更多“It was () of you to turn off the light while I was sleeping. ”相关问题
  • 第1题:

    If you drive your car in that way, you’ll end ___ in hospital.

    A. up

    B. in

    C. off


    参考答案:A

  • 第2题:

    以下程序段中,循环次数不超过10的是()

    A.int i=10; do{ i=i+1;} while(i<0);

    B.int i=5; do{ i+=1;} while(i>0);

    C.int i=1; do{ i+=2;} while(i!=10);

    D.int i=6; do{ i-=2;} while(i!=1);


    int i=10; do{ i=i+1;} while(i<0);

  • 第3题:

    15、以下程序段中,循环次数不超过10的是()

    A.int i=10; do{ i=i+1;} while(i<0);

    B.int i=5; do{ i+=1;} while(i>0);

    C.int i=1; do{ i+=2;} while(i!=10);

    D.int i=6; do{ i-=2;} while(i!=1);


    int i=10;do{i=i+1;}while(i<0);

  • 第4题:

    – David, you've been losing your temper over nothing lately.– ( ).

    A. I haven’t been getting much sleep either

    B. You’d better not push yourself too hard, or you’ll get sick

    C. I’m sorry. I shouldn’t have blown up like that

    D. You’d better do exercises regularly


    正确答案:C

  • 第5题:

    以下能正确计算1+2+3+…+10的程序段是 。

    A.i=1; s=1; do {s=s+i; i++;} while (i<10);

    B.do {i=1;s=0; s=s+i; i++;} while (i<=10);

    C.do {i=1;s=1; s=s+i; i++;} while (i<=10);

    D.i=1,s=0; do {s=s+i; i++;} while (i<=10);

    E.i=1; s=1; do {s=s+i; i++;} while (i<=10);

    F.i=1,s=0; do {s=s+i; i++;} while (i<10);


    C

  • 第6题:

    15、以下程序段中,循环次数不超过10的是()

    A.int i=10; do{ i=i+1;} while(i<0);

    B.int i=5; do{ i+=1;} while(i>0);

    C.int i=1; do{ i+=2;} while(i!=10);

    D.int i=6; do{ i-=2;} while(i!=1);


    int i=10;do{i=i+1;}while(i<0);