以下程序的输出结果是( )。 #include<stdio.h> main() {int x=27; while(x>20&&x<30) { x++; if(x/3){x++;break;} else

admin2011-06-10  21

问题 以下程序的输出结果是(       )。
   #include<stdio.h>
   main()
   {int x=27;
   while(x>20&&x<30)
  {    x++;
  if(x/3){x++;break;}
   else
  continue;
   }
   printf("%d\n",x);
   }

选项

答案29

解析 本题考查while循环和++运算,x=27符合循环条件,执行循环体中x++后,x=28,if条件也成立,执行x++后退出,x的值增1,结果x=29。
转载请注明原文地址:https://kaotiyun.com/show/yCPp777K
0

最新回复(0)