首 页
大学试题
CMS专题
工学
经济学
专升本
法学
教育学
历史学
更多分类
搜索
题库考试答案搜索网 > 题目详情
当前位置:
首页
>
当VB执行下面语句后,A的值为 ( ) A=1 If A>0 Then A=A+1 If A>1 Then A=0
>
题目详情
问题题干
答案解析
相关问题
热门问题
最新问题
问题详情
当VB执行下面语句后,A的值为 ( ) A=1 If A>0 Then A=A+1 If A>1 Then A=0
B、1
C、2
D、3
时间:2022-01-13 00:16
关键词:
答案解析
A
解析:本题要注意语句的顺序执行。A被初始化为1,执行第一个If语句,条件表达式A>o的值为真,故执行语句A=A +1得A的值为2。接着执行第二个If语句,此时条件表达式A>1仍然成立(因为此时A的值为2),故执行相应后面的语句A=0,得A的值最终为0。选项A正确。
相关问题
若矩阵 ( 1 a −1 2, 1 −1 a 2 ,1 0 −1 2 ) 的秩为2,则 a的值为 。
执行下列语句后c的值为( )。 int a=1,b=2,c=3; if(a>C、 { b=a; a=c; c=b; }
执行完如下语句后,a的值为:
已知a,b,c的值分别是1,2,3,则执行下列语句if (a++
下列程序段的执行结果为 a=95 If a > 60 Then degree=1 If a > 70 Then degree=2 If a > 80 Then degree=3 If a > 90 Then degree=4 Print"degree=";degree
最新问题
下列程序执行后,变量a的值为( )。 Dim a,b,c,d as single a=100 b=20 c=1000 if b>a Then d=a:a=b:b=d End if if c>a Then d=a:a=c:c=d End if if c>b Then d=b:b=c:c=d End if
下列程序执行后,变量a的值为 Dim a,b,C,d as single a=100:b=20:c=1000 if b>a Then d=a:a=b:b=d End if if c > a Then d=b:b=c:c=d End if
若整型变量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
下列程序执行后,变量x的值为( )。 Dim a, b, c, d As Single Dim x As Single a=10 b=30 c=400 If b>a Then d=a:a=b:b=d End If If b>c Then x=b Else If a>c Then x=c Else x=a End If
下列程序段的执行结果为 A=2 B=5 If A * B < 1 Then B=B - 1 Else B= - 1 Print B -A > 0
当执行下面语句后,B的值为()。 B=1 If B>0 Then B=B+1 If B>1 Then B=0
若a的值为3时,下列程序段被执行后,c的值是( )。 int c=1; if(a>0) if(a>3) c=2; else c=3; else c=4;
若a的值为3时,下列程序段被执行后,c的值是()。intc=1;if(a>0)if(a>3)c=2;elsec=3;elsec-4;
a的值为3时,下列程序段被执行后,c的值是( )。 int c=1; if (a<0) if (a<3) c=2; else c=3; else c=4;
若a的值为3时,下列程序段被执行后,c的值是 int c = 1; if (a>0) if (a>3) c = 2; else c = 3; else c = 4;
别人在看