更多“______ interesting books you bought us! ”相关问题
  • 第1题:

    Would you like ______some vegetable?

    A、buy

    B、to buy

    C、buying

    D、bought


    参考答案: B

  • 第2题:

    The house is worth ____.

    A: to buy

    B: buy

    C: buying

    D: bought


    参考答案:C

  • 第3题:

    ( ) – Is Miss White __________ English teacher, Maria?

    – No, she teaches __________ geography.

    A.your;my

    B.you;mine

    C.you;us

    D.your;us


    正确答案:D

  • 第4题:

    We have been () walnutmeat form. the local commission houses, who () send us quotations regularly.

    A、bought,used to

    B、buying,used to

    C、buy,are used

    D、bought,used to


    参考答案:B

  • 第5题:

    Merry Christmas, George! Here is a card for ________, with ________ best withes.

    A.you…your

    B.you…our

    C.us…our

    D.us…your


    参考答案:B

  • 第6题:

    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


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。