若整型变量a值为2、b的值为3,则下列程序段执行后整型变量c的值为______。 If a>5 then If b<4 Then c=a-b Else c=b-a Else If b>3 Then c=a*b Else c=a mod b End IfA. 2B.-1C.1D.6
若整型变量a值为2、b的值为3,则下列程序段执行后整型变量c的值为______。 If a>5 then If b<4 Then c=a-b Else c=b-a Else If b>3 Then c=a*b Else c=a mod b End If
A. 2
B.-1
C.1
D.6
相关考题:
若整型变量a的值为2、b的值为3,则下面程序段执行后整型变量c的值为( )。 If a>5 Then If b<4 Thenc=a-b Elsec=b-a Else If b>3 Thenc=a*b Elsec=aMod6 End IfA.2B.-1C.1D.6
已知a、b、c为整型变量,若从键盘输入567,使a的值为5,b的值为6,c的值为7,则下列 已知a、b、c为整型变量,若从键盘输入5<空格>6<空格>7<回车>,使a的值为5,b的值为6,c的值为7,则下列选项中正确的输入语句是( )。A.scanf ("%3d%3d%3d",a,b,C);B.scanf ("%d%d%d",a,b,C);C.scanf ("%d%d%d",a,b,c);D.scanf ("%d%d%d",a,b,c);
若整型变量a、b、C、d中的值依次为2、2、3、4,则条件表达式ab?a:cd?C:d的值是( )。A.1 若整型变量a、b、C、d中的值依次为2、2、3、4,则条件表达式a<;b?a:c<;d?C:d的值是( )。A.1B.2C.3D.4
若整型变量a、b、c、d中的值依次为2、2、3、4,则条件表达式ab?a:cd?c:d的值是( )。A.A.1 SXB 若整型变量a、b、c、d中的值依次为2、2、3、4,则条件表达式ab?a:cd?c:d的值是( )。A.A.1B.2C.3D.4
单选题以下程序段执行后,整型变量s的值为()。 s=4 For i=1 To 4 s=s-1 Next iA0B-1C4D5