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

题目内容 (请给出正确答案)
I have the ___________ feeling that I ’m highly intelligent.

A. confidence

B. compulsory

C. comparative

D. complacent


参考答案

更多 “ I have the ___________ feeling that I ’m highly intelligent. A. confidenceB. compulsoryC. comparativeD. complacent ” 相关考题
考题 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 ( ) recommend to you Mr.Robinson, my best friend, who always aims ( ) in his work. A、highly/ highlyB、highly/ highC、high/ highlyD、high/ high

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

考题 写出以下程序的运行结果: int main() { int m,s,i; for(m=2;m<10;m++) { s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m); } return 0; }

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

考题 假设整型变量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; }