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

题目内容 (请给出正确答案)
I'm going to do all I can to ______ the unpleasant impressions you have of me.

A. remove

B. move

C. get

D. leave


参考答案

更多 “ I'm going to do all I can to ______ the unpleasant impressions you have of me. A. removeB. moveC. getD. leave ” 相关考题
考题 ---- Shall we stay at home watching TV tonight?---- No, I’d like __________ and see a movie.A. to go B. go C. went D. going

考题 You look(). What () you () ? A、tire, did…doB、tiring, have…doneC、tired, do…doD、tired, have…been doing

考题 9. _______you _______ stay at home today?A. Do ; have toB. Must; have toC. Have; toD. Do ; must

考题 ---Good morning. I've got an appointment with Miss Smith in the PersonnelDepartment.--Ah, good morning. You ____be Mrs. Peters.A. mightB. mustC. wouldD. can

考题 —Where____you____lunch?—Athome.TherewasnoschoollunchA.did;haveB.are;havingC.will;haveD.do;have

考题 —I'd met Smith several times before.—So (have) ( ) I.

考题 以下程序的输出结果是()。main(){char*a[][5]={“how”,”do”,”you”,”do”,”!”};char**p;inti;p=a;for(i=0;i A.howdoyoudo!B.howC.howdoyoudoD.hdyd

考题 You look() What()you()?Atire;did;doBtiring;have;doneCtired;do;doDtired;have;been doing

考题 以下能正确计算1+2+3+…+10的程序段是 。A.i=1; s=1; do {s=s+i; i++;} while (i<10);B.do {i=1;s=0; s=s+i; i++;} while (i<=10);C.do {i=1;s=1; s=s+i; i++;} while (i<=10);D.i=1,s=0; do {s=s+i; i++;} while (i<=10);E.i=1; s=1; do {s=s+i; i++;} while (i<=10);F.i=1,s=0; do {s=s+i; i++;} while (i<10);

考题 下面程序段的运行结果是()。 int m[]={5,8,7,6,9,2},i=1; do{ m[i]+=2; } while(m[++i]>5); for(i=0;i<6;i++) printf("%d ",m[i]);A.7 10 9 8 11 4B.7 10 9 8 11 2C.5 10 9 8 11 2D.5 10 9 8 11 4