首页 > 试题广场 >

有段代码写成了下边这样,如果在只修改一个字符的前提下,使代码

[问答题]

有段代码写成了下边这样,如果在只修改一个字符的前提下,使代码输出20个hello?

for(int i = 0; i < 20; i--)
cout << "hello" << endl;


for(int i=0;-i < 20; i--)
    cout << "hello" << endl;
发表于 2019-04-15 20:52:30 回复(0)
for(int i=40;i<20;i--)
   cout<<"hello"<<end1;

发表于 2021-06-25 23:03:47 回复(0)
参考答案是对的 楼上的也是对的 只要保证20次 for循环中第二个表达式不为0即可
发表于 2020-12-20 15:54:28 回复(0)