网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
I was () work last week, but I changed my mind.

A.to start

B.to have started

C.to be starting

D.to have been starting


参考答案

更多 “ I was () work last week, but I changed my mind. A.to startB.to have startedC.to be startingD.to have been starting ” 相关考题
考题 to, I, how, last, winter, skate, learned__________________________________________________________________________.

考题 I, my, will, true, come, hope, dream__________________________________________________________________________.

考题 ( 10 )执行下列程序,显示的结果是 【 10 】 。one= "WORK"two = ""a = LEN ( one )i = aDO WHILE i=1two = two + SUBSTR ( one ,i , 1 )i=i - 1ENDDO? two

考题 I' m a deputy manager. I()an IT company.A. work forB. work aboutC. work

考题 By Saturday, I _______ here for three weeks.A:will be workingB:will have workedC:will workD:work

考题 执行下列程序,显示的结果是【 】。ne="WORK"two=""a=LEN(one)i=aDO WHILE i>=ltwo=two+SUBSTR(one,i, 1)i=i-1ENDDO?two

考题 在HTML文件中,( )标记在页面中显示work为斜体字。A.<pre>work</pre> B.<u>work</u> C.<i>work</i> D.<b>work</b>

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