判断题

下面C++代码执行后将输出 0123 。( )

for (i = 0; i < 5; i++)
  for (i = 0; i < i; i++)
    continue;
printf("%d\n", i);


A.
正确
B.
错误

发表评论

登录 后再回复