第22794题 判断
判断修改C++代码中for循环的条件与步进表达式后输出是否与原代码相同
int cnt = 0;
for (int i = 0; i < 100; i = i + 1)
    cnt += 1;
cout << cnt;
A

B