I don't have any English books ______ this one.
A、for
B、without
C、except
D、 from
第1题:
Let’s translate the sentence ______ English.
A: for
B: to
C: into
D: with
第2题:
-- Ann is in hospital.
-- Oh, really? I __ know. I __ go and visit her.
A. didn’t; am going to B. don’t; would
C. don’t; will D. didn't; will
第3题:
29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }
A.Physicalbook
B.sical
C.Physical
D.sicalbook
第4题:
____ I?know,?there?isn’t?such?a?word?in?English.
A、As much as
B、So far as
C、As long as
D、As soon as
第5题:
30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }
A.E
B.s
C.n
D.h