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

题目内容 (请给出正确答案)

I'm equally _________about every school record that I have broken.

A. interested

B. interesting

C. excited

D. exciting


参考答案

更多 “ I'm equally _________about every school record that I have broken.A. interestedB. interestingC. excitedD. exciting ” 相关考题
考题 i’m angry ______________ her for missing our appointment. A. ofB. overC. withD. about

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

考题 If only we______(have)a phone! I'm tired of waiting outside the public phone box.

考题 -Would you like to go to the cinema?-I'd _____to go to the museum.A. ratherB. PreferC. have

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

考题 I’m not fully aware ______ what happened at the loading port.A.atB.toC.ofD.about

考题 【单选题】AIDA法则中的I指什么()。A."注意"(Attention)B."兴趣"(Interest)C."欲望"(Desire)D."行动"(Action)

考题 22、假设整型变量n,m,i已经声明和赋值,且大于n>2.有如下运算规则:如果n是素数,m=0;否则,m=n。如下程序中正确实现此运算的是?A.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;break; }B.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;break; }C.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;continue; }D.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;continue; }

考题 下面()仅输出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);