第20533题 判断题
判断给定C++代码读取1.txt(第一行为无空格5个字符`01234`)后,输出结果是否为第一行的长度5
ifstream filein;
int buff;
filein.open("1.txt");
filein >> buff;
cout << buff << endl;

题目说明:1.txt的第一行内容为无空格的5个字符01234

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析