第28195题 单选题
以下C++代码运行后的输出结果是?
#include <iostream>
using namespace std;
int a = 10;
void test() {
    cout << a << " ";
}
int main() {
    int a = 20;
    test();
    cout << a << endl;
    return 0;
}
A

10 20

B

20 20

C

10 10

D

20 10

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析