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

题目内容 (请给出正确答案)
i’m thinking about ______________ the course in diving this summer.

A. making

B. visiting

C. training

D. taking


参考答案

更多 “ i’m thinking about ______________ the course in diving this summer. A. makingB. visitingC. trainingD. taking ” 相关考题
考题 i’m angry ______________ her for missing our appointment. A. ofB. overC. withD. about

考题 听力原文:M: So, Jane, how long have you been an author?W: Well, Tom, I didn't start writing until I was in my thirtieth, and I'm over seventy now. So goodness, I must have been writing for about forty years.How long has the woman been an author?A.About 30 years.B.About 40 years.C.About 60 years.D.About 70 years.

考题 I think her condition is improving but it may just be ________ thinking.A willfulB wishfulC hopefulD tactful

考题 It is kind of you to reply to my letter without (). A、denyingB、pauseC、delayD、thinking

考题 假设某数据库中有表Course,Course中有属性Cname(课程名),查询以“DB_”开头,则倒数第三个字符i的课程的详细情况:SELECT*FROM CourseWHERE______。

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

考题 I'm anxious about her safety.A:nervous B:concerned C:uneasy D:thinking

考题 thinking 培养逻辑思维

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