I __________ your house last night at about 12:00, so I didn ’t call you.A.passed onB.passed fromC.passed toD.passed by

题目
I __________ your house last night at about 12:00, so I didn ’t call you.

A.passed on

B.passed from

C.passed to

D.passed by


相似考题
更多“I __________ your house last night at about 12:00, so I didn ’t call you. ”相关问题
  • 第1题:

    I________ from him since he left.

    A、haven’t heard

    B、didn’t receive

    C、haven’t got

    D、didn’t have


    正确答案:A

  • 第2题:

    I’d rather you ________ make any comment on the issue for the time being.

    A) don’t     B) wouldn’t     C) didn’t            D) shouldn’t    

     


    选C
    would rather that……"宁愿……",that从句中用过去时表示现在或将来要做的事。

  • 第3题:

    在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是

    A.j = i; j< = PtrL->Last; j++

    B.j =PtrL->Last; j>= i; j--

    C.j = i-1; j< = PtrL->Last; j++

    D.j =PtrL->Last; j>= i-1; j--


    O(n)

  • 第4题:

    I’d rather you ____ come here to see the film. It’s really long and boring.

    A. haven’t

    B. don’t

    C. didn’t

    D. hadn’t


    正确答案:C

  • 第5题:

    -- Ann is in hospital.

    -- Oh, really? I __ know. I __ go and visit her.

    A. didn’t; am going to B. don’t; would

    C. don’t; will D. didn't; will


    正确答案:D

  • 第6题:

    12、以下算法的功能是在一个非递减的顺序存储线性表中,删除所有值相等的多余元素。时间复杂度为O(n),空间复杂度为O(1)。划线部分应填入的语句是()。 void DelRepeatData(SeqList *L) { i=0; j=1; while(j<=L->last) { if(L->elem[i]==L->elem[j]) ; else { L->elem[i+1]=L->elem[j]; i++; j++; } } L->last=i; }

    A.i++

    B.j++

    C.i--

    D.j--


    ①j ②p->link=q->link;