WHILE[#1GT10] DO1;… END1;,下列说法正确的是()(FANUC系统)。A、当#1大于10则转到END1后的程序段B、当#1大于10则执行DO1到END1之间的程序段C、当#1小于10则转到END1后的程序段D、当#1小于10则执行DO1到END1之间的程序段E、当#1大于10则执行DO1到END1的程序段一次,再执行END1后的程序
WHILE[#1GT10] DO1;… END1;,下列说法正确的是()(FANUC系统)。
- A、当#1大于10则转到END1后的程序段
- B、当#1大于10则执行DO1到END1之间的程序段
- C、当#1小于10则转到END1后的程序段
- D、当#1小于10则执行DO1到END1之间的程序段
- E、当#1大于10则执行DO1到END1的程序段一次,再执行END1后的程序
相关考题:
下面关于do-while语句和while语句说法的是()。 A、while语句和do-while语句肯定都要执行B、两者运行结果不同C、do-while在判断条件之前先执行循环体一次D、while语句至少执行一次
C语言中 while 和do-while循环的主要区别是A.do-while的循环体至少无条件执行一次B.while的循环控制条件比do-while的循环控制条件更严格C.do-while允许从外部转到循环体内D.do-while 的循环体不能是复合语句
与以下程序段等价的是( ) while (a) { if (b) continue; C; }A.while(a)B.while(c) {if(!b) c;) {if(!b)break: c:)C.while?D.while(a) {if(b) c:) {if(b) break: c;}
在c语言中while循环和do-while循环的主要区别是() A.do-while循环体内可以使用break语句,while循环体内不能使用break语句B.do-while的循环体至少无条件执行一次,while的循环体不是C.do-while循环体可以使用continue语句,while循环体内不能使用continue语句D.while的循环体至少无条件执行一次,do-while的循环体不是
while和do-while循环的主要区别是A.do-while的循环体至少无条件执行一次B.while的循环控制条件比do-while的循环控制条件更严格C.do-while允许从外部转到循环体内D.do-while的循环体不能是复合语句
下列写法中等价的是( )。A.若x=1,while(x!=x)与while(x)B.若x=0,while(x!=x)与while(x)C.若x=1,while(x!=0)与while(!x)D.若x=0,while(x==0)与while(x)
The idea for the new project came to Jack ______ to his study recently.A. while devotingB. while devoting himselfC. while he was devotedD. while devoted
A pilot vessel on pilotage duty shall show identity lights ______.A.at any time while underwayB.while at anchorC.while alongside a vesselD.All of the above
while与do-while相比较,描述正确的是()。A、第一次循环条件为真,while与do-while都执行,无区别B、第一次循环条件为真,while与do...while都不执行C、第一次循环条件为真,while执行,do...while不执行D、第一次循环条件为假,while不执行,do...while执行
下面关于while及do-while说法中,描述正确的是()A、while与do..while没有区别B、while是先执行后判断C、do..while是先判断后执行D、while是先判断后执行,条件为真时执行
下面关于程序中使用while描述正确的是()。A、while结构中可以嵌入if结构B、while结构中可以嵌入switch结构C、while结构中不能嵌入选择结构D、if选择结构中可以包含循环结构while
单选题Python中,for和while可以有else语句?()A只有for有else语句B只有while有else语句Cfor,while都有else语句Dfor,while都没有else语句
单选题The two passages differ in their perspectives on the debate between industrialists and environmentalists mainly in that Passage 1 emphasizes ______.Amathematics, while Passage 2 emphasizes psychologyBdeficiencies in the debate, while Passage 2 emphasizes progress in the debateCthe irrelevance of externalities, while Passage 2 emphasizes their importanceDthe impact on taxpayers, while Passage 2 emphasizes the views of politiciansEpollution, while Passage 2 emphasizes recycling
单选题在c语言中while循环和do-while循环的主要区别是()Ado-while循环体内可以使用break语句,while循环体内不能使用break语句Bdo-while的循环体至少无条件执行一次,while的循环体不是Cdo-while循环体可以使用continue语句,while循环体内不能使用continue语句Dwhile的循环体至少无条件执行一次,do-while的循环体不是
单选题下列程序段中,能够建立刀具半径右补偿的是()。AG01 G42 X21.0 Y2.0 DO1 F300BG00 G41 X100.0 Y20.5 DO1CG00 G43 Z3.0 H01DG02 G41 X30.0 Y2.0 815.0 DO1 F200