将下面C++代码中的for循环中的 i = 1 调整为 i = 0 的输出结果相同。()
int tnt = 0; for (int i = 1; i < 5; i++) // i=1 tnt += i; cout << tnt;
发表评论