【单选题】【消耗次数:1】
I will __________ here till you give me some money.
leave
not leave
come
return
参考答案:
复制
纠错
相关题目
【单选题】 I will ________here till you give me some money.
①  leave
②  not leave
③  come
④  return
【单选题】 “Do you think, because I am poor, obscure, plain, and little, I am soulless and heartless? You think wrong!—I have as much soul as you,—and full as much heart! And if God had gifted me with some beauty and much wealth, I should have made it as hard for you to leave me, as it is now for me to leave you. ” This passage is taken from ________.
①  Emma
②  Wuthering Heights
③  Jane Eyre
④  Pride and Prejudice
【单选题】 She asked me when I ?[填空] leave.
①  will
②  is going to
③  would
④  should
【判断题】 Keep your passport and money with you and make photocopies of all important documents before you leave.
①  正确
②  错误
【单选题】 I leave it to your own judgement you should do it.
①  that
②  which
③  whether
④  What
【判断题】 A: Ought I to leave tomorrow? B: Yes, I think you ought to.
①  正确
②  错误
【单选题】 If someone calls me, ask him or her to leave a [填空] .
①  message
②  letter
③  sentence
④  notice
【单选题】 I intend to ______ a larger order if you give me a discount.
①  place
②  play
③  pose
④  pick
【单选题】 The key ___ on the table when I leave.
①  was left
②  will be left
③  is left
④  has been left
【单选题】 If by any chance someone comes to see me, ask the person to leave a ____.
①  message
②  letter
③  sentence
④  notice
随机题目
【单选题】 以下选项中与if(a==1)a=b; else a++;语句功能不同的switch语句是。
①  switch(a) {case1:a=b;break; default:a++; }
②  switch(a==1) {case 0:a=b;break;case 1:a++; }
③  switch(a) {default:a++;break;case 1:a=b;}
④  switch(a==1) {case 1:a=b;break; case 0:a++;}
【单选题】 以下选项中与if(a==1)a=b;else a++;语句功能不同的switch语句是。
①  switch(a){ case1:a=b; break; default:a++;}
②  switch(a==1){ case0:a=b; break;case1:a++;}
③  switch(a){ default:a++;break;case1:a=b;}
④  switch(a==1){ case1:a=b;break;case0:a++;}
【单选题】 以下程序运行的输出结果是。main(){ int p=30;printf(%d\n,(p/320?p/10:p%3)); }
①  0
②  1
③  2
④  3
【单选题】 有如下嵌套的if语句if(ab)if(ac) else if(bc) else 以下选项中与上述if语句等价的语句是。
①  k=(ab)?((a<c)?a:c)((b<c)?b:c);
②  k=(ab)?((b<c)?a:b)((b>c)?b:c);
③  k=(ab)?a:b;k=(b<c)?b:c;
④  k=(ab)?a:b;k=(a<c)?a:c;
【单选题】 以下程序的运行结果是(  )。 #include stdio.hvoid main(){int i=1,s=3;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n
①  7
②  8
③  9
④  10
【单选题】 下列条件语句中输出结果与其他语句不同的是。
①  if(a)printf(“%d\n”,x); else printf(“%d\n”,y);
②  if(a==0)printf(“%d\n”,y);else printf(“%d\n”,x);
③  if(a!=0)printf(“%d\n”,x);elseprintf(“%d\n”,y);
④  if(a==0)printf(“%d\n”,x);else printf(“%d\n”,y);
【单选题】 写出下面程序的执行结果。main( ){ int x,y=1; if(y!=0) printf(“%d\t”,x); if(y= =0) else printf(“%d\t\n”,x);
①  1 3
②  1 5
③  5 3
④  5 5
【单选题】 两次运行下面的程序,如果从键盘上分别输入1和10,则输出结果是。main( ){ int x; scanf(“%d”, if(x++5) printf(“%d”,x); else printf(“%d\n”,x++);}
①  1和2
②  10和11
③  1和10
④  2和11
【单选题】 已知 int x=30,y=50,z=80;以下语句执行后变量x、y、z的值分别为:。if (xy||xz)z=x; x=y; y=z;
①  x=50, y=80, z=80
②  x=80, y=30, z=50
③  x=30, y=50, z=80
④  x=50, y=30, z=30
【单选题】 能正确表示x的取值范围在[0,100]和[-10,-5]内的表达式是。
①  (x=-10)||(x=-5)(x=0)||(x=100)
②  (x=-10)(x=-5)(x=0)(x=100)
③  (x=-10)(x=-5)||(x=0)(x=100)
④  (x=-10)||(x=-5)||(x=0)||(x=100)