首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
以下程序的输出结果是( )。 #include<stdio.h> main() {int x=27; while(x>20&&x<30) { x++; if(x/3){x++;break;} else
以下程序的输出结果是( )。 #include<stdio.h> main() {int x=27; while(x>20&&x<30) { x++; if(x/3){x++;break;} else
admin
2011-06-10
23
问题
以下程序的输出结果是( )。
#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://jikaoti.com/ti/lGB0FFFM
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
有以下程序 main( ) { ints=0,a=1,n; scanf("%d",&n); do {s+=1;a=a-2;} while(a!=n); printf("%d\n",s);
以下程序的运行结果是【】 #include <string.h> typedef struct student{ charname[10]; longsno; floatscore;}STU; main( )
以下程序中给指针p分配三个double型动态内存单元,请填空。 #include<stdlib.h> main( ) { double*p; p=(double*)malloc(【】); p[0]=1.5;p[1]
下列程序的运行结果是:【】 #include<string.h> char*ss(char*s) { returns+strlen(s)/2;} main( ) { char*p,*str=”abcdefgh”;
有以下程序 struct STU { char name[10];v int num; int Score; }; main( ) { struct STU s[5]={ {“YangSan”,20041,703},{“LiSiGuo”
下面程序的功能是输出以下形式的金字塔图案是: * * * * * * * * * * * * * * * * main( ) {
设有以下语句 typedefstructS { int g; char h; } T; 则下面叙述中正确的是( )
strcmp函数的功能是【】。
排序方法中,将整个无序序列分割成若干小的子序列并分别进行插入排序的方法,称______。
在结构化方法中,用数据流图(DFD)作为描述工具的软件开发阶段是()。
随机试题
下列各项中,应计入期间费用的有()。
我国的行政领导方式是一种_________的领导方式。
叙述护理诊断常用的形式()。
流动经营的单位,在经营地缴纳“三税”的,则其城市维护建设税应在( )缴纳。
以下关于股权再融资的说法,正确的有()。
材料:下面是摘自一位班主任工作日志中的一段话:我们班的张华被查出偷偷吸烟,经过教育,我以为他不会再犯。但出乎意料的是,他又接二连三地吸烟,而且每当我询问他,他总是信誓旦旦地说绝不再犯,这真让我火冒三丈。到底问题出在哪?我把吸烟的危害说得淋漓尽致,也告诉
Itisallverywelltoblametrafficjams,thecostofpetrolandthequickpaceofmodernlife,butmannersontheroadsarebe
Eventodayinthemodem,developedworld,surveysshowthatparentsstillprefertohaveaboyratherthanagirl.Onelongstand
A、Tobringsomegiftforherbirthday.B、Tojointhepartyandbeontime.C、Tofindthewaytoherplacebyhimself.D、Topush
Welovewhatwecandowithourcomputers,yetwhenitcomestoreading,giventhechoice,mostpeoplepreferprintingtheirmat
最新回复
(
0
)