下列程序段的执行结果为
m=1
n=1
Select Case m
Case 1
Select Case n
Case 0
Print "**0**"
Case 1
Print "**1**"
End Select
Case 2
Print "**2**"
End Select( )。
A.**0**
B.**1**
C.**2**
D.0
第1题:
下列程序段的执行结果为 m=1 n=1 Select Case m Case 1 Select Case n Case 0 Print" * * 0 * *" Case 1 Print" * *1* *" End Select Case 2 Print" * * 2 * *" End Select
A.**0**
B.**1**
C.**2**
D.0
第2题:
下列程序段的执行结果为 m=1 n=1 Select Case m Case 1 Select Case n Case 0 Print "* * 0 * *" Case 1 Print " * * 1 * * " End Select Case 2 print " * * 2 * * " End Select
A.* * 0 * *
B.* * 1 * *
C.* * 2 * *
D.0
第3题:
下列程序段的执行结果为 m=1 n=1 Select Case m Case 1 Select Case n Case 0 Print" * * 0 * *" Case 1 Print" * *.* *" End Select Case 2 Print"* *,2 * *," End Select
A.* * 0 * *
B.* * 1 * *
C.* * 2 * *
D.0
第4题:
有下列程序: #include<stdio.h> main { int a=6,b=7,m=1; switch(a%2) { case 0:m++;break; case 1:m++; switch(b%2) { default:m++; case 0:m++;break; } } printf("%d\n",m); } 程序的运行结果是( )。
A.3
B.2
C.4
D.1
第5题:
有下列程序:
#include<stdio.h>
main()
{ int a=6,b=7,m=1;
switch(a%2)
{ case 0:m++;break;
case 1:m++;
switch(b%2)
{ defaut:m++;
case0:m++;break;
}
}
printf("%d\n",m);
}
程序运行后的输出结果是( )。
A.1
B.2
C.3
D.4