第22000题 单选
运行以下C++程序,输出的结果是什么?
#include <iostream>
using namespace std;

int main()
{
    cout << "Hello" << " ";
    cout << "World";
    return 0;
}
A

Hello, world!

B

Hello World

C

语法错误

D

无任何输出

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