参考答案和解析
参考答案:C
更多“I saw some villagers()on the bench at the end of the room. ”相关问题
  • 第1题:

    A: I’d like ________ information about the school. B: You could have ________ word with the schoolmaster.

    A.some / a

    B.an / some

    C.some / some


    参考答案:A

  • 第2题:

    --I' d like ___________ information about the management of your hotel, please.
    --Well, you could haveword with the manager, which might be helpful.

    A.some ; a
    B.an ; some
    C.some; some
    D.an; a

    答案:A
    解析:
    information在此为不可数名词,故可排除B、D两个选项;have a word with sb.为固定短语。意思是“跟……说句话”。

  • 第3题:

    下列 Python语句的运行结果为 for i in range (3): print(i, end='') for i in range(2, 5): print(i, end='')


    012234

  • 第4题:

    If I had come here yesterday, I _______him.

    A. would have seen

    B. would see

    C. have seen

    D. saw


    正确答案:A

  • 第5题:

    下面程序的输出结果是: i=0 while i<10: i += 1 if i == 7: continue else: print(i,end=' ')


    86420

  • 第6题:

    下列选项中,能找出三位数中,所有个位数字是9并且是3的倍数的数的代码是()。

    A.for i in range(100,1000): if i%10=9 and i%3=0: print(i,end=' ')

    B.for i in range(100,1000): if i//10==9 and i//3==0: print(i,end=' ')

    C.for i in range(100,1000): if i%10==9 and i%3==0: print(i,end=' ')

    D.for i in range(100,1000): if i%10==9 and i%3==0: print(i,end=' ')


    for i in range(100,1000): if i%10==9 and i%3==0: print(i,end=' ')