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
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
相关考题:
---- 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
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 sorry I can′t see you immediately;but if you′d like to take a seat,I′ll?be with?you__________.A.for a momentB.in a momentC.for the momentD.at the moment
下面()仅输出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);