A-A+

以下程序运行后的输出结果是main(){int x=15; while(x>10&&x<50) { x++; if(x/3)

2020-10-12 15:33:14 IT认证 阅读

问题详情

以下程序运行后的输出结果是main(){ int x=15; while(x>10&&x<50) { x++; if(x/3) { x++; break; } else continue; } printf("%d\n",x);}

参考答案

考点: