第29407题 单选题
执行以下C++代码后,控制台的正确输出结果是?
#include <iostream>
using namespace std;
int main() {
    cout << "Hello" << "\t" << "World" << endl;
    cout << "C++ Course" << '\n';
    return 0;
}
A

Hello\tWorldC++ Course

B

Hello\tWorld C++ Course

C

HelloWorld\tC++ Course

D

编译报错

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