多分支选择结构的Case语句中“变量值列表”不能是()。 A: 常量值的列表,如Case1,3,5 B: 变量名的列表,如Casex,y,z C: To表达式,如Case10To20 D: Is关系表达式,如CaseIs<20
多分支选择结构的Case语句中“变量值列表”不能是()。 A: 常量值的列表,如Case1,3,5 B: 变量名的列表,如Casex,y,z C: To表达式,如Case10To20 D: Is关系表达式,如CaseIs<20
Case Is>10 And Is<20 是不合法的
Case Is>10 And Is<20 是不合法的
下面程序段的输出为( ) int a=15, b=10, c=20, d; d = a > 12 ? b : c; switch(d) { case 5: printf('%d,', a); case 10: printf('%d,', b); case 20: printf('%d,', c); default: printf('#'); }
下面程序段的输出为( ) int a=15, b=10, c=20, d; d = a > 12 ? b : c; switch(d) { case 5: printf('%d,', a); case 10: printf('%d,', b); case 20: printf('%d,', c); default: printf('#'); }
下面程序段的输出为( ) int a=15, b=10, c=20, d; d = a >12 ? b : c; switch(d) { case 5:printf("%d,", a); case 10:printf("%d,", b); case 20:printf("%d,", c); default:printf("# "); }
下面程序段的输出为( ) int a=15, b=10, c=20, d; d = a >12 ? b : c; switch(d) { case 5:printf("%d,", a); case 10:printf("%d,", b); case 20:printf("%d,", c); default:printf("# "); }
int i=20;switch(i/10){case 2:printf('A');case 1:printf('B');}的输出结果为A。
int i=20;switch(i/10){case 2:printf('A');case 1:printf('B');}的输出结果为A。
在 Select Case a结构中,描述判断条件 1 ≦ a ≦ 10 的测试项应该写成()。 A: Case 1 <= a <= 10 B: Case 1 ≦ a And a ≦ 10 C: Case Is >= 10 or Is >= 1 D: Case 1 To 10
在 Select Case a结构中,描述判断条件 1 ≦ a ≦ 10 的测试项应该写成()。 A: Case 1 <= a <= 10 B: Case 1 ≦ a And a ≦ 10 C: Case Is >= 10 or Is >= 1 D: Case 1 To 10
中国大学MOOC: 在窗体上添加一个命令按钮Command1和两个文本框Text1和Text2,然后编写如下事件过程:Private Sub Command1_Click() n = Text1.Text Select Case n Case 1 To 20 x = 10 Case 2, 4, 6 x = 20 Case Is < 10 x = 30 Case 10 x = 40 End Select Text2.Text = xEnd Sub程序运行后,如果在文本框Text1中输入10,然后单击命令按钮,则在Text2中显示的内容是( )。
中国大学MOOC: 在窗体上添加一个命令按钮Command1和两个文本框Text1和Text2,然后编写如下事件过程:Private Sub Command1_Click() n = Text1.Text Select Case n Case 1 To 20 x = 10 Case 2, 4, 6 x = 20 Case Is < 10 x = 30 Case 10 x = 40 End Select Text2.Text = xEnd Sub程序运行后,如果在文本框Text1中输入10,然后单击命令按钮,则在Text2中显示的内容是( )。
x为Select case 语句中的测试表达式,若需表示10~50之间的条件,以下Case语句中正确的是( )。 A: Case 10 To 50 B: Case x>=10 and x<=50 C: Case Is>10 And Is<50 D: Case 10,50
x为Select case 语句中的测试表达式,若需表示10~50之间的条件,以下Case语句中正确的是( )。 A: Case 10 To 50 B: Case x>=10 and x<=50 C: Case Is>10 And Is<50 D: Case 10,50
【单选题】用 Select Case语句选择|x|> 10 情况的语句为: Case A. Not(-10 To 10 ) B. -10 To 10 C. Is < 10 ,Is>10 D. Abs(x)>10
【单选题】用 Select Case语句选择|x|> 10 情况的语句为: Case A. Not(-10 To 10 ) B. -10 To 10 C. Is < 10 ,Is>10 D. Abs(x)>10
执行下列程序后,变量 i 的正确结果是( )。 int i=10; switch(i) { case 9:i+=1; case 10:i+=1; case 11:i+=1; case 12:i+=1; }
执行下列程序后,变量 i 的正确结果是( )。 int i=10; switch(i) { case 9:i+=1; case 10:i+=1; case 11:i+=1; case 12:i+=1; }