第20346题 判断
判断给定的C++程序执行后是否输出2010
int x = 10;
void f() { int x = 20; cout << x; }
int main() {
f();
cout << x;
}
A

正确

B

错误

提交0次 正确率0.00%
答案解析