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

题目内容 (请给出正确答案)
I know the coat is unfashionable but I’m not going to throw it away. I’ll keep it () that style. comes into fashion again.

A、when

B、until

C、since

D、as


参考答案

更多 “ I know the coat is unfashionable but I’m not going to throw it away. I’ll keep it () that style. comes into fashion again. A、whenB、untilC、sinceD、as ” 相关考题
考题 ---- 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

考题 A: I'm going to clean the house. B: () do the shopping. A、I like toB、I wouldC、I'll

考题 6.I _________ some money from him,but I’ll _________ it tohim in a few days.A. borrow,returnB. lend,borrowC. borrow,keepD. lend,keep

考题 ____ I?know,?there?isn’t?such?a?word?in?English.A、As much asB、So far asC、As long asD、As soon as

考题 -- Ann is in hospital.-- Oh, really? I __ know. I __ go and visit her.A. didn’t; am going to B. don’t; wouldC. don’t; will D. didn't; will

考题 I'm sure I'll be able to amuse myself for a few hours.A:treat B:hold C:entertain D:keep

考题 I′m sorry I can′t see you immediately;but if you′d like to take a seat,I′ll?be with?you__________.A.for a moment B.in a moment C.for the moment D.at the moment

考题 I'm sure I'll be able to amuse myself for a few hours.A:entertain B:treat C:hold D:keep

考题 下面()仅输出m的大于1的最小因子。A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);

考题 下面()是正确的判断素数程序(m>1)。A.j=0; for (i =2; i<=m-1; i++) if (m % i != 0) j++; if(j==m-2) printf(“%d是素数n", m);B.j=0; for (i =2; i<=m-1; i++) if (m % i == 0) j++; if(j==0) printf(“%d是素数n", m);C.flag=0; for (i =2; i<=m-1; i++) if (m % i == 0) flag=1; if(flag==0) printf(“%d是素数n", m);D.for (i =2; i<=m-1; i++) if (m % i == 0) i=m+2; if(i==m+3) printf(“%d是素数n", m);