Switch involves only 3 parties, but entrepot at least involves 3 parties.
Switch involves only 3 parties, but entrepot at least involves 3 parties.
执行下列switch语句后y的值是()intx=3;inty=3;switch(x+3){case6:y=1;default:y+=1;}A.4.0B.3.0C.2.0D.1.0
执行下列switch语句后y的值是()intx=3;inty=3;switch(x+3){case6:y=1;default:y+=1;}A.4.0B.3.0C.2.0D.1.0
如下图所示的网络拓扑结构中。将下面的交换机配置命令补充完整,使得主机A属于虚拟局域网VLAN10,主机B属于虚拟局域网VLAN20。 Switch>enable Switch# (1) Switch(config)# (2) Switch(config-vlan)#exit Switch(config)#vlan 20 Switch(config-vlan)#exit Switch(config)#interface (3) Switch(config-if)#switch access vlan 10 Switch(config-if)#no shutdown Switch(config-if)#exit Switch(config)#interface (4) Switch(config-if)# (5) Switch(config-if)#no shutdowne2e092ff2147dcd328ef09a1fcfb4e0e.jpg
如下图所示的网络拓扑结构中。将下面的交换机配置命令补充完整,使得主机A属于虚拟局域网VLAN10,主机B属于虚拟局域网VLAN20。 Switch>enable Switch# (1) Switch(config)# (2) Switch(config-vlan)#exit Switch(config)#vlan 20 Switch(config-vlan)#exit Switch(config)#interface (3) Switch(config-if)#switch access vlan 10 Switch(config-if)#no shutdown Switch(config-if)#exit Switch(config)#interface (4) Switch(config-if)# (5) Switch(config-if)#no shutdowne2e092ff2147dcd328ef09a1fcfb4e0e.jpg
定义intx=1;则执行下面的switch语句后,y的值为2的是。 A: switch(x){case1:y=1;case2:y=2;default:y=3;} B: switch(x){case1:y=1;break;case2:y=2;break;default:y=3;break;} C: switch(x){case1:y=1;case2:y=2;break;default:y=3;} D: switch(x){case1:y=1;break;case2:y=2;default:y=3;}
定义intx=1;则执行下面的switch语句后,y的值为2的是。 A: switch(x){case1:y=1;case2:y=2;default:y=3;} B: switch(x){case1:y=1;break;case2:y=2;break;default:y=3;break;} C: switch(x){case1:y=1;case2:y=2;break;default:y=3;} D: switch(x){case1:y=1;break;case2:y=2;default:y=3;}
下列程序的执行结果是()。switch 3|4 case...ise disp(no)end
下列程序的执行结果是()。switch 3|4 case...ise disp(no)end
若有以下定义:float x;int a,b;则正确的switch语句是( ) A: switch(x){case 1.0:printf("* ");case 2.0:printf("** ");} B: switch(x){case 1,2:printf("* ");case 3:printf("** ");} C: switch(a+b){case 1:printf("* ");case 1+2:printf("** ");} D: switch(a){case b<1:printf("* ");case b>2:printf("** ");}
若有以下定义:float x;int a,b;则正确的switch语句是( ) A: switch(x){case 1.0:printf("* ");case 2.0:printf("** ");} B: switch(x){case 1,2:printf("* ");case 3:printf("** ");} C: switch(a+b){case 1:printf("* ");case 1+2:printf("** ");} D: switch(a){case b<1:printf("* ");case b>2:printf("** ");}
若a、b、c1、c2、x、y均是整型变量,正确的switch语句是______。①switch(a+b);{ case 1:y=a+b;break;case 0:y=a-b;break;}②switch(a*a+b*b){ case 3:case 1:y=a+b;break;case 3:y=b-a;break;}③switch { case c1:y=a-b;break;case c2:x=a*b;break;default:x=a+b;}④switch (a-b){ default:y=a*b;break;case 3:case 4:x=a+b;break;case 10:case 11:y=a-b;break;} A: ① B: ② C: ③ D: ④
若a、b、c1、c2、x、y均是整型变量,正确的switch语句是______。①switch(a+b);{ case 1:y=a+b;break;case 0:y=a-b;break;}②switch(a*a+b*b){ case 3:case 1:y=a+b;break;case 3:y=b-a;break;}③switch { case c1:y=a-b;break;case c2:x=a*b;break;default:x=a+b;}④switch (a-b){ default:y=a*b;break;case 3:case 4:x=a+b;break;case 10:case 11:y=a-b;break;} A: ① B: ② C: ③ D: ④
若有定义:floatx=1.5;inta=1,b=3,c=2; 则正确的switch语句是( )。 A: switch(a+b){ case1:printf("*\n"); case2+1:printf("**\n");} B: switch(a+b){ case1:printf("*\n"); casec:printf("**\n");} C: switch(x){ case1.0:printf("*\n"); case2.0:printf("**\n");} D: switch((int)x);{ case1:printf("*\n"); case2:printf("**\n");}
若有定义:floatx=1.5;inta=1,b=3,c=2; 则正确的switch语句是( )。 A: switch(a+b){ case1:printf("*\n"); case2+1:printf("**\n");} B: switch(a+b){ case1:printf("*\n"); casec:printf("**\n");} C: switch(x){ case1.0:printf("*\n"); case2.0:printf("**\n");} D: switch((int)x);{ case1:printf("*\n"); case2:printf("**\n");}
交换机的特权模式提示符为: A: Switch>; B: Switch: C: Switch D: Switch!
交换机的特权模式提示符为: A: Switch>; B: Switch: C: Switch D: Switch!
下面程序执行的结果是()。int c=3;switch(c){case ...stem.out.println(c);
下面程序执行的结果是()。int c=3;switch(c){case ...stem.out.println(c);