— I'm afraid I have spilled some coffee on the table cloth.— ____________ A.Oh, don't worry about that.B.You needn’t apologize.C.I feel sorry for that.D.Oh, you shouldn’t have done that.
— I'm afraid I have spilled some coffee on the table cloth.— ____________
A.Oh, don't worry about that.
B.You needn’t apologize.
C.I feel sorry for that.
D.Oh, you shouldn’t have done that.
相关考题:
3. —Come and join us,Jimmy !—I-m sorry,but I-m really busy now.lf I _______ time,l would certainly go.A. will haveB. have hadC. hadD. have
A: I’d like ________ information about the school. B: You could have ________ word with the schoolmaster. A.some / aB.an / someC.some / some
--I' d like ___________ information about the management of your hotel, please.--Well, you could haveword with the manager, which might be helpful.A.some ; aB.an ; someC.some; someD.an; a
Most operating systems have a standard set of ( ) to handle the processing of all input and output instructions. A.spreadsheet B.control instructions C. I/O operation D.datA.table
下面()仅输出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);