【单选题】【消耗次数:1】
If I ___ it, I would do it in a different way.
were to do
do
had done
was to do
参考答案:
复制
纠错
相关题目
【单选题】 --Do you dance? --Yes, I do.--________?--Every weekend.
①  :How hard do you practice
②  :How much do you pay for it
③  :How often do you go dancing
④  :How long do you practice it
【判断题】 I will help you do it. = I will help you to do it.
①  正确
②  错误
【判断题】 A: What do you do? B: I do well in my studies.
①  正确
②  错误
【单选题】 Do you mind if I join you?
①  I’m very happy to do so
②  Never mind
③  Please do
④  Oh, I can’t
【判断题】 A: What do you do, Polly? B: I work for an IT company.
①  正确
②  错误
【单选题】 —Hello there, what can I do for you, sir?—_____________________.
①  I can do it myself.
②  No, youre welcome.
③  I would like to buy a pair of glasses.
④  Yes, thank you.
【单选题】 If they ___ to do this work, he might do it some other way.
①  were
②  should
③  will
④  can
【单选题】 — Do you want to go to see a movie?— ______________ I feel like doing something different.
①  Dont mention it.
②  Yes. I want it.
③  Not really.
④  Adeal.
【单选题】 I really do not know whether we can succeed, so do not expect ____.
①  too much of us
②  us too much
③  of us too much
④  us of too much
【单选题】 What can I do for you, madam?
①  I want a kilo of apples
②  You can go your own way
③  Thanks
④  Excuse me. I’m busy
随机题目
【单选题】 以下正确的字符常量是
①  “x”
②  ‘W’
③  ‘’
④  ‘XYZ’
【单选题】 以下程序的输出结果是:main){inta=100,x=10,y=20,okl=5,ok2=0;ifx<y)ify!=10)if!okl)a=1;elseifok2)a=10;a=-1:printf%d\n,a)}
①  1
②  0
③  一1
④  值不确定
【单选题】 一个C语言程序是由
①  一个主程序和若干子程序组成
②  函数组成
③  若干过程组成
④  若干子程序组成
【单选题】 若w,x,y,z,m均为int型变量,则执行下面语句后的m值是:w=1;x=2;y=3;z=4;m=w<y)?w:x;m=m<y)?m:y;m=m<z)?m:Z;
①  1
②  2
③  3
④  4
【单选题】 以下程序运行的结果是)main){intx=12,y;y=x>12?x+10:x-12;printf“y=%d\n”,y);}
①  y=0
②  y=22
③  y=12
④  y=10
【单选题】 若变量已正确定义并赋值,下面符合C语言语法的表达式是
①  a:=b+1
②  a=b=c+2
③  int18.5%3
④  a=a+7=c+b
【单选题】 设有程序段intk=10;whilek=0)k=k-1;则下面描述中正确的是
①  循环执行十次
②  循环是无限循环
③  循环体语句一次也不执行
④  循环体语句执行一次
【单选题】 以下对数组的初始化正确的是
①  intx[5]={0,1,2,3,4,5};
②  intx[]={0,1,2,3,4,5};
③  intx[5]={50};
④  intx[]=0,1,2,3,4,5);
【单选题】 为了避免在嵌套的条件语句If一else中产生二义性,C语言规定else子句总是与)配对
①  缩排位置相同的if
②  其之前最近的if
③  之后最近的if
④  同一行上的if
【单选题】 设x和y均为int型变量,则执行下的循环后,y值为fory=1,x=1;y=10))break;ifx%2==1){x+=5;continue;}x-=3;}
①  2
②  4
③  6
④  8