【单选题】【消耗次数:1】
Many a customer____ about the poor quality of the washing machine.
complains
complain
are complaining
have complained
参考答案:
复制
纠错
相关题目
【单选题】 Our customers are complaining of the ______ quality of our products.
①  gracious
②  wonderful
③  superior
④  inferior
【单选题】 Many people complain of the rapid _____ of modern life.
①  rate
②  speed
③  pace
④  growth
【判断题】 Ever since he arrived, he has been complaining constantly about the weather.
①  正确
②  错误
【单选题】 —How many poor counties will there be in our province by 2020?—There will be only a few, if _______.
①  much
②  some
③  any
④  many
【单选题】 —How many poor counties will there be in our province by 2010?—There will be only a few, if _______.
①  much
②  some
③  any
④  many
【单选题】 She had made many ( ) into the quality of the computer before buying one.
①  inquiry
②  inquiries
③  search
④  research
【单选题】 I have spent a lot of time_______repairing the machine.
①  at
②  /
③  on
【单选题】 The travellers have suffered many hardships and ____________ many difficulties.
①  undergo
②  undergoes
③  undergone
④  underwent
【单选题】 —How many people are there in Changsha?—About six ______.
①  million
②  millions
③  millions of
【单选题】 We can certainly deliver high-quality education to many students at much ________ cost.
①  low
②  lowest
③  lower
④  lowed
随机题目
【简答题】 以下程序输出的结果是[填空1]。#include stdio.hvoid main(){int x, i;for(i=1; i i++){ x=i;if(++x%2==0)if(++x%3==0)if(++x%7==0)printf(%d\n,x);}printf(“\n”);}
【简答题】 有以下程序#includestdio.hmain(){ int x;scanf(%d,if(x15) printf(%d,x-5);if(x10) printf(%dif(x5) printf(%d\n,x+5); }若程序运行时从键盘输入12回车,则输出结果为[填空1]。
【简答题】 有以下程序(说明:字符0的ASCII码值为48)#includestdio.hmain(){ char c1,c2;scanf(%d,c2=c1+9;printf(%c%c\n,c1,c2); }若程序运行时从键盘输入48回车,则输出结果为[填空1]。
【判断题】 计算机程序设计语言分为机器语言、汇编语言、高级语言和自然语言。
①  正确
②  错误
【单选题】 有以下程序#include stdio.hmain(){ int a;scanf(%d ,if(a++9) printf(%d\nelse printf(%d\n }程序运行时从键盘输入9回车,则输出的结果是。
①  10
②  11
③  9
④  8
【单选题】 以下哪一个可以作为正确的变量名()。
①  for
②  $abc
③  3*x
④  _file
【单选题】 以下哪一个不是正确的C语言常量()。
①  0x2ac
②  3.25e-8
③  800
④  0486
【单选题】 写出下面程序的执行结果。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
【单选题】 若有定义:double a=22;int i=0,k=18;,则不符合C语言规定的赋值语句是()
①  a=a++,i++;
②  i=(a+k)=(i+k);
③  i=A%11;
④  i=!a;
【单选题】 以下程序的运行结果是。main( ){int c,x,y; x=1; y=1; c=0; c=x++||y++; printf(“\n%d%d%d\n”,x,y,c);}
①  110
②  211
③  011
④  001