A. remove
B. move
C. get
D. leave
第1题:
—Where____you____lunch?
—Athome.Therewasnoschoollunch
A.did;have
B.are;having
C.will;have
D.do;have
第2题:
A.howdoyoudo!
B.how
C.howdoyoudo
D.hdyd
第3题:
以下能正确计算1+2+3+…+10的程序段是 。
A.i=1; s=1; do {s=s+i; i++;} while (i<10);
B.do {i=1;s=0; s=s+i; i++;} while (i<=10);
C.do {i=1;s=1; s=s+i; i++;} while (i<=10);
D.i=1,s=0; do {s=s+i; i++;} while (i<=10);
E.i=1; s=1; do {s=s+i; i++;} while (i<=10);
F.i=1,s=0; do {s=s+i; i++;} while (i<10);
第4题:
第5题:
You look() What()you()?
Atire;did;do
Btiring;have;done
Ctired;do;do
Dtired;have;been doing
第6题:
下面程序段的运行结果是()。 int m[]={5,8,7,6,9,2},i=1; do{ m[i]+=2; } while(m[++i]>5); for(i=0;i<6;i++) printf("%d ",m[i]);
A.7 10 9 8 11 4
B.7 10 9 8 11 2
C.5 10 9 8 11 2
D.5 10 9 8 11 4