I was paid last week, but I can’t remember the exact_____of money. A、number.B、quality.C、amount.D、altitude.

I was paid last week, but I can’t remember the exact_____of money.

A、number.

B、quality.

C、amount.

D、altitude.


相关考题:

Lodger: I’m terribly sorry that I broke you precious vase. I’ll pay for it.Landlady:____. A.Can’t complainB.Take careC.Relax yourselfD.Never mind

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

--Your phone number again? I _______ quite catch it. A.don'tB.can'tC.couldn'tD.didn't

— Jane, I’m coming to say good-bye. I’m leaving tomorrow.\n— _______A.I’m sorry.B.Oh, no. Why?C.Go slowly.D.Why soon? Can’t you stay a few days longer?

If any beasts comes at you, I()stay with you and help you.A、am going toB、willC、can

If he had really been there, I ___________ have seen himA.willB.shallC.shouldD.can

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