A.looks … came
B.looked … was coming
C.is looking … came
D.looks … is looking
第1题:
I' m a deputy manager. I()an IT company.
A. work for
B. work about
C. work
第2题:
A、be driven…driving
B、driving…drive
C、have driven…drive
D、drive…driving
第3题:
下列选项中,循环会无限执行的是______。
A.int i = 1 ; while (i < 10) System .out .print(“ ” + i) ;
B.for(int i = 1 ; i < 10 ;i ++) System .out .print(“ ” + i);
C.for(int i = 10 ; i > 0 ;i --) System .out .print(“ ” + i);
D.int i = 1 ; while (true) { System .out .print(“ ” + i); i ++ ; if (i > 5) break ;
第4题:
By Saturday, I _______ here for three weeks.
A:will be working
B:will have worked
C:will work
D:work
第5题:
第6题:
已知s0=8,则表达式out = s0 ? i1 : i2的结果是 。
A.out=i1
B.out=i2
C.out=1
D.out=0