A、a, an.
B、the, a.
C、an, a.
D、an, the.
第1题:
18、以下哪个for语句是错误的?
A.for (i=0;j=0; i<10; i++ );
B.for (i=0;i<10);
C.for (i=0; i++ );
D.for (;;);
E.for (i=0; i<10; i--);
F.for (i=0; i<10, j<10; i++);
G.for (int i=0; i<10, j<10; i++);
第2题:
1、. 朗读下列单词。QQ语音提交(分3个语音) 1) Park, pork, earn, do, me 2) Now, ghost, name, ripe, coin, lure, stare, ear 3) Cat, bet, hungry, job, earn, toward, good, kill
第3题:
下列词汇中,表示“收银员”的是?
A.counter
B.porter
C.attendant
D.cashier
第4题:
以下哪个for语句是错误的?
A.for (i=0;j=0; i<10; i++ );
B.for (i=0;i<10);
C.for (i=0; i++ );
D.for (;;);
E.for (i=0; i<10; i--);
F.for (i=0; i<10, j<10; i++);
G.for (int i=0; i<10, j<10; i++);
第5题:
以下哪个for语句是正确的?
A.for(i=0; i<10; i++);
B.for(i=0; i<10, i++);
C.for(i=0, i<10; i++);
D.for(i=0, i<10, i++);
E.for(i=0; i<10);
F.for(i=0; i++);
第6题:
结束循环后,()中 i 的值是10。
A.for(i=1;i<=10;i++) { }
B.for(i=1;i<10;i++) { }
C.for(i=0;i<=10;i=i+2) { }
D.for(i=10;i>=10;i--) { }