The students went out of the room___.
A. one by two
B. one by one
C. two by another
D. one by the other
查看答案
I've been a student there for nearly two and _______ half years.
A. a
B. an
C. the
D. /
It took me ________ to find out the key to the drawer.
A. one and half hours
B. one and a half hours
C. one and a half hour
D. one and half hour
#includemain( ){ char ch;ch=getchar( );switch(ch){ case ‘A’ : printf(“%c”,’A’);case ‘B’ : printf(“%c”,’B’); break;default: printf(“%s\n”,”other”);} }当从键盘输入字母A时,运行结果为:
#include main( ){ int a=1,b=0;scanf(“%d”,&a);switch(a){ case 1: b=1;break;case 2: b=2;break;default : b=10;}printf("%d ", b);}若键盘输入5,运行结果为: