第20371题 判断
判断给定C++代码是否能够将字符串"Hello"写入文件data.txt
ofstream file("data.txt");
cout << "Hello" << endl;
file.close();
A

正确

B

错误

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