交换下面C++代码中的 i += 2 和 cnt += 1 ,交换前后分别运行的两次输出相同。( )
int i, cnt = 0; cnt = 0; while (i < 10){ i += 2; cnt += 1; } cout << cnt;