【判断题】“诚信”一词,最早出现于战国时期的书籍《战国策》中。()
【单选题】若有定义: float w; int a, b; 则合法的switch语句是
A.
switch(w) { case1.0: printf("*\n"); case2.0: printf("**\n"); }
B.
switch(a); { case 1 printf("*\n"); case 2 printf("**\n"); }
C.
switch(b) { case a: printf("*\n"); default: printf("\n"); case b: printf("**\n"); }
D.
switch(a+b) { case 1: printf("*\n"); case 2: printf("**\n"); default: printf("\n"); }
【单选题】若有定义 float w; int a, b; ,则合法的 switch 语句是 ________ 。
A.
switch(w) { case 1.0: cout< case 2.0: cout< }
B.
switch(a) { case 1 cout< case 2 cout< }
C.
switch(b) { case 1: cout< default: cout< case 1+2: cout< }
D.
switch(a+b); { case 1: cout< case 2: cout< default: cout< }
【简答题】若有定义: float w; int a, b; 则合法的switch语句是A. switch(w)
{case1.0: printf("*\n");
case2.0: printf("**\n");
} B. switch(a);
{ case 1 printf("*\n");
case 2 printf("**\n");
} C. switch(b)
{ case a: printf(...
【判断题】农民有农地交易权,但是农地流转的权利是有限的。( )
【单选题】“ 民族 ” 一词在中国最早出现于何时 ( )
【判断题】农民有农地交易权,但是农地流转的权利是有限的。( )
【单选题】若有定义:float w;int a,b;则合法的switch语句是
A.
switch (w) { case 1.0:printf ("*\n"); case 2.0:printf ("**\n"); }
B.
switch (a) ; { case 1.0:printf ("*\n"); case 2.0:printf ("**\n"); }
C.
switch (b) { case 1:printf(“*\n); default:printf(“\n”); case a:printf(“**\n”); }
D.
switch (a + b); { case 1:printf ("*\n"); case 2:printf ("**\n") ; default:printf ("\n") ; }