第23530题 判断
判断给出的C++代码片段是否可实现将字符串"Hello"写入data.txt文件
ofstream out("data.txt");
out << "Hello";
out.close();
A

正确

B

错误

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