I was watch a film at 9 o'clock last night.() 此题为判断题(对,错)。

I was watch a film at 9 o'clock last night.()

此题为判断题(对,错)。


相关考题:

–How about 2 o'clock?–() A、I'm sorry. But it won’t be so convenient for me.B、No, it's not good.C、Is it convenient for you?D、Sorry, I can't go.

to, I, how, last, winter, skate, learned__________________________________________________________________________.

You can go out,()you promise to be back before 12 o'clock.A. so far asB. as far asC. as long as

The plane is scheduled to () at 4 o'clock.A、take upB、take offC、take onD、take out

If you __B_to the railway station by 3 o’clock ,you must hurry.

I _________ (watch) TV when someone knocked at the door.

2、在顺序结构表示的线性表中,删除第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),空间复杂度为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--

在顺序结构表示的线性表中,删除第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--

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--