下面C++代码执行后将输出 0123 。( )
for (i = 0; i < 5; i++) for (i = 0; i < i; i++) continue; printf("%d\n", i);
发表评论