第23332题 判断
判断给定C++代码中Hello字符串的输出次数是否为5次
for (int i = 0; i < 5; i++);
{
    cout << "Hello" << endl;
}
A

正确

B

错误

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