【单选题】【消耗次数: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
随机题目
【单选题】 C++中函数返回值的类型是由()决定的。
①  return语句中表达式的类型
②  函数定义时的类型
③  调用函数时的调用语句
④  系统根据结果
【单选题】 能作为C++程序的基本单位是()
①  字符
②  语句函数
③  源程序文件
【单选题】 在下面循环语句中内层循环体S语句的执行总次数为( ) for(int i=0; i i++) for(int j=i; j j++) S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 当处理特定问题时的循环次数已知时,通常采用()来解决
①  for循环
②  while循环
③  do循环
④  switch语句
【单选题】 由C++目标文件连接而成的可执行文件的默认扩展名为()
①  cpp
②  exe
③  obj
④  lik
【单选题】 以下标识符中不全是保留字的是()
①  case for int
②  default then while
③  bool class long
④  goto return char
【单选题】 当类中一个字符指针指向具有n个字节的存储空间时,它所存储字符串的最大长度是( )
①  n
②  n-1
③  n+1
④  n-2
【单选题】 switch语句能够改写为()语句
①  for
②  if
③  do
④  while
【单选题】 设x和y均为bool量,则x y为真的条件是()
①  它们均为真
②  其中一个为真
③  它们均为假
④  其中一个为假
【单选题】 以下叙述中不正确的是()
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量