更多“________ books is very interesting. ”相关问题
  • 第1题:

    那听起来很有趣。

    _______ _______interesting.


    正确答案:
    43.That sounds

  • 第2题:

    The more the young students worked, the ________ energetic they became.

    A: much

    B: more

    C: most

    D: very


    参考答案:B

  • 第3题:

    Ever since the drivers' strike started, citywide buses have been ( ) running thirty minutes to one hour late.

    A. finally

    B. constantly

    C. concurrently

    D. very

    答案:B
    解析:

  • 第4题:

    This is the _____ house in which Mr.Zhou once lived.

    A.certain

    B.sure

    C.real

    D.very


    答案:D 

  • 第5题:

    what has Barbara got in her suitcase?

    A.shoes

    B.stones

    C.books


    正确答案:A

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