11151 . 判断题 Puls

下面程序执行后输出2010。

int x = 10;
void f() { int x = 20; cout << x; }

int main() {
    f();
    cout << x;
}