更多“—Where are________ books? —They are on the desk. ”相关问题
  • 第1题:

    what has Barbara got in her suitcase?

    A.shoes

    B.stones

    C.books


    正确答案:A

  • 第2题:

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

  • 第3题:

    若有声明语句char s1[10]={0},s2[10]="books";则能将字符串“books”赋给数组s1保存的语句是()。

    A.strcat(s1,s2);

    B.s1="books";

    C.s1=s2;

    D.strcpy(s2,s1);


    C

  • 第4题:

    Both the Bible and the Koran are regarded as() books.

    A.sacred
    B.rubbish
    C.secret
    D.satisfied

    答案:A
    解析:
    「圣经」与 「可兰经」都被视为圣书。

  • 第5题:

    06410101:若有语句:char s1[10], s2[10]={"books"},则能将字符串books赋给数组s1的正确语句是()。

    A.s1={"books"};

    B.strcpy(s1,s2);

    C.s1=s2;

    D.strcpy(s2,s1);


    A