A、considerable
B、considerate
C、concerned
D、careful
第1题:
A. up
B. in
C. off
第2题:
以下程序段中,循环次数不超过10的是()
A.int i=10; do{ i=i+1;} while(i<0);
B.int i=5; do{ i+=1;} while(i>0);
C.int i=1; do{ i+=2;} while(i!=10);
D.int i=6; do{ i-=2;} while(i!=1);
第3题:
15、以下程序段中,循环次数不超过10的是()
A.int i=10; do{ i=i+1;} while(i<0);
B.int i=5; do{ i+=1;} while(i>0);
C.int i=1; do{ i+=2;} while(i!=10);
D.int i=6; do{ i-=2;} while(i!=1);
第4题:
– David, you've been losing your temper over nothing lately.– ( ).
A. I haven’t been getting much sleep either
B. You’d better not push yourself too hard, or you’ll get sick
C. I’m sorry. I shouldn’t have blown up like that
D. You’d better do exercises regularly
第5题:
以下能正确计算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);
第6题:
15、以下程序段中,循环次数不超过10的是()
A.int i=10; do{ i=i+1;} while(i<0);
B.int i=5; do{ i+=1;} while(i>0);
C.int i=1; do{ i+=2;} while(i!=10);
D.int i=6; do{ i-=2;} while(i!=1);