下面()不是oracle程序设计中的循环语句。A、for…end forB、loop…end loopC、while…end loopD、For…end loop

下面()不是oracle程序设计中的循环语句。

  • A、for…end for
  • B、loop…end loop
  • C、while…end loop
  • D、For…end loop

相关考题:

下列不是分支结构的语句是( )。A.If…Then…End IfB.While…WendC.If…Then…Else…End IfD.Select…Case…End Select

下列不是分支结构的语句是( )。A)If…Then…End IfB)If…Then…Else…End IfC)While…WendD)Select…Case…End Select

单击命令按钮时,下列程序的运行结果为 Private Sub Command1_Click() Print Fun(23,18) End Sub Public Function Fun(m As Integer,n As Integer)As Integer Do While m<>n Do While m>n:m=m-n:Loop Do While m<n:n=n-m:Loop Loop Fun=m End FunctionA.0B.1C.3D.5

(25)下列程序的运行结果是 。 Private Function myfun(m,n) Do While mn Do While mn:m=m-n:Loop Do While nm:n=n-m:Loop Loop myfun=m End Function Private Sub Command1_Click() Print myfun(9,8) End SubA.2 B.1 C.4 D.3

PL/SQL的循环控制语句LOOP包括以下()几种类型 A、LOOPB、WHILE….LOOPC、IF…LOOPD、FOR…LOOP

下列程序的运行结果是( )。 Private Function myfun(m,n) Do while mn Do While mn:m=m-n:Loop Do Wllile nm:n=n-m:Loop Loop myfun=m End Function Private Sub Command1_Click( ) print myfun(9,8) End SubA.2B.1C.4D.3

以下能够正确计算n!的程序是A.Private Sub Command1_Chck( ) n=5:x=1 Do x=x*i i=i+1 Loop While i<n Print x End SubB.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<n Print x End SubC.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<=n Print x End SubD.Private Sub Command1_Click( ) n=5:x=1:i=l Dox=x*i i=i+1 Loop While i>n Print x End Sub

阅读下面的程序: Private Sub Form_Click() Dim Check, Counter Check=True Counter=0 Do Do While Counter < 20 Counter=Counter + 1 If Counter=10 Then Check = False Exit Do End If Loop Loop Until Check = False Print Counter, Check End Sub 程序运行后,单击窗体,输出的结果为A.15 0B.20 -1C.10 TrueD.10 False

单击命令按钮时,下列程序代码的运行结果为 Private Sub Command1_Click() Print MyFunc(20, 18) End Sub Public Function MyFunc(m As Integer, n As Integer)As Integer Do While m<>n Do While m>n:m=m-n:Loop Do Whle m<n:n=n-m:Loop Loop MyFunc=m End FunctionA.0B.2C.4D.6

在Visual FoxPr0中,如果希望跳出SCAN…END—SCAN循环体、执行ENDSCAN后面的语句,应使用( )。A.LOOP语句B.EXIT语句C.BREAK语句D.RETURN语句

下列不是分支结构的语句是( )。A. If.··Then··End IFB. While…EndC. If...Then...Else…End IfD. Select…Case…End Select

单击命令按钮时,下列程序的运行结果为 Private Sub Command1_Click( ) Print Fun(23, 18) End Sub Public Function Fun(m As Integer, n As Integer) As Integer Do Whilem <> n Do While m > n : m--m - n: Loop Do While m < n : n=n - m: Loop Loop Fun =m End FunctionA.0B.1C.3D.5

Select Case…End Select结构与下列语句结构可以实现同样功能的是( )。 A.if…Then…End if Select Case…End Select结构与下列语句结构可以实现同样功能的是( )。A.if…Then…End ifB.For…NextC.D0…LoopD.While…Wend

下列不是分支结构的语句是( )。【考点4 VBA流程控制语句】A.If…Then…End IFB.While…WendC.If…Then…Else…End IfD.Select…Case…End Select

下列程序的运行结果是( )。 Private Function myfun(m,n) Do While m>n Do While m>n:m=m-n:Loop Do While n>m:n=n-m:Loop Loop myfun=m End Function Private Sub Command1_Click() Print myfun(9,8) End SubA.2B.1C.4D.3

下列不是分支结构的语句是( )。A.If...Then...End IFB.While...WendC.If...Then...Else...EndlfD.Select...Case...End Select

以下语句错误的是:______ 。A.Do while(Condition) Statements LoopB.Do Statements Loop while(condition)C.Do until(condition) Statements LoopD.Do until(condition) Statements end do

以下能够正确计算n!的程序是______。A.Private Sub Commeadl_Click() n=5: x=1 Do x=x*i i=i+1 Loop While i<n Print x End SubB.Private Sub Command1_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop While i<n Print x End SubC.Private Sub Command1_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop Whilei<=n Print x End SubD.Private Sub Commsndl_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop While i>n Print x End Sub

在窗体中添加一个名称为Commandl的命令按钮,然后编写如下事件代码:Private Sub Commandl Click( ) MsgBox f(24,18)End Sub Public Function f(m As Integer,n As Integer)As"integerDo While mn Do While mn m=m-n Loop Do While mn n=n-m Loop Loop f=m End Function 窗体打开运行后,单击命令按钮,则消息框的输出结果是( )。A.2B.4C.6D.8

对于以下程序段,设a和q都是整型变量, ┇ a=q; Loop:if(a==0)goto End; Else if(a>0){printf("");a--;goto Loop;} Else goto End; End; ┇ 不能与上面程序等价的是( )A.a=q; do { f(a<0)break; a--;printf("*"); }while(a) ;B.a=q; for(;a>0;a--)printf("");C.a=q; while(a) {printf("");a--;}D.for(a=q;a>0;--a,printf("*"));

以下能够正确计算n!的程序是( )。A.Private Sub Commandl_C1ick()B.hiVate Sub Commandl_C1ick() n=5:x=1 n=5:x=1:i=1 DO DO X=x*1 X=X*1 i=i+1 i=i+1 Loop while i<n Loop While<n Print x Ptinte x End Sub End SubC.Private Sub Commandl_Click ()D.Pdvate Sub Commandl C1ick() n=5:X=1:i=1 n=5=:x=1:i=1 DO DO X=X*1 X=X*1 i=i+1 i=i+1 Loop While i>n Print x Print x End Sub End Sub

完成以下PL/SQL块,功能是:显示2 到50的25个偶数。 BEGIN FOR________ IN _________ LOOP DBMS_OUTPUT.PUT_LINE(even_number*2); END LOOP END;

要退出Do Loop循环,可使用的语句是()语句。A、ExitB、Exit ForC、End DoD、Exit Do

下列对条件语句、分支语句、固定循环次数语句、不定循环次数语句关键字排序正确的是()A、if elseend;for end;switch case end;while end;B、if elseend;switch case end;for end;while end;C、for end;if else end;while end;switch case end;D、while end;for end;switch case end;if else end;

以下不属于Visual Basic支持的循环结构的是()A、For„ NextB、ForEach„ NextC、Do„ LoopD、While„ End

PL/SQL的循环控制语句LOOP包括以下()类型。A、LOOPB、WHILE…LOOPC、IF…LOOPD、FOR…LOOP

单选题下列对条件语句、分支语句、固定循环次数语句、不定循环次数语句关键字排序正确的是()Aif elseend;for end;switch case end;while end;Bif elseend;switch case end;for end;while end;Cfor end;if else end;while end;switch case end;Dwhile end;for end;switch case end;if else end;