下列语句错误的是A.If a=3 And b=2 Then c=3 End IfB.If a=1 Then c=2 Else If a=2 End IfC.If a=3 And b=2 Then c=2 Else If a=2 Then c=3 End IfD.If a=1 Then c=2
下列语句错误的是
A.If a=3 And b=2 Then c=3 End If
B.If a=1 Then c=2 Else If a=2 End If
C.If a=3 And b=2 Then c=2 Else If a=2 Then c=3 End If
D.If a=1 Then c=2
相关考题:
下列CASE语句中执行结果不为空的是() A、SELECTCASEWHEN125THEN'true'ELSE'false'END;B、SELECTCASEBINARY'B'WHEN'a'THEN1WHEN'b'THEN2END;C、SELECTCASEWHEN-10THEN'true'END;D、SELECTCASE'one'WHEN1THEN'one'WHEN2THEN'two'END;
设有语句:if(a==1)b=2;c=3;,以下语句中与之等价的是( )。A.if(a==1){b=2;c=3;}B.if(a!=1){;}else{b=2;c=3;}C.if(a=1)c=3;b=2;D.(a==1)?b=2:a:=a;c=3;
请看以下存储过程beginbegin语句1exceptionwhen othersdbms_output.put_line('错误1');end;begin语句2dbms_output.putline('错误2');end;exceptionwhen others thendbms_output.put_line("错误3");end;请问,当语句1,语句2出错时,该存储过程输出字符串分别是什么?
下列哪条语句是正确的()A.A=[1 2;3 4];B=[3;7];A.*B;B.A=cell(2,3);A(1,2)=[4;5];C.A=[2 3 5 7;9 4 6 1;7 3 2 5];B=[1 7;0 5];A(2:end,2:2:end)D.x=-5:5;y=-5:5;z=x.*x-y.*y;surf(x,y,z);
下列MATLAB语句运行有误的是()。A.A=[1 2;3 4];B=[3;7];A*BB.A=ones(3,3);A(1,2:3)=[4,5]C.A=[2 3 5 7;9 4 6 1;7 3 2 5];B=[1 7;0 5];A(2:end,2:2:end)>BD.x=-5:5;y=-5:5;z=x*x-y*y
12、有以下语句:a=eye(5); for n=a(:, 3:end) ... end 其中for循环的循环次数是()。A.2B.3C.4D.5