【单选题】【消耗次数:1】
Farmers are allowed to grow small gardens of their own and they sell their vegetables ____ the black market.
on
at
in
for
参考答案:
复制
纠错
相关题目
【单选题】 Farmers are allowed to grow small gardens of their own and they sell their vegetables _____the black market.
①  on
②  at
③  in
④  for
【判断题】 Do your sister sell goods in the market?
①  正确
②  错误
【单选题】 The gardens are beautifully _______
①  laid aside
②  laid down
③  laid off
④  laid out
【单选题】 Farmers____bygovernmenttodooddjobsincitieswhentheyarefree.
①  encourage
②  areencouraging
③  areencouraged
④  arecourageous
【单选题】 How many morphemes are there in the word “farmers”?
①  one
②  two
③  three
④  four
【单选题】 The gardens and history of Suzhou ( ) all who visit there.
①  captivate
②  captive
③  captivation
④  captivating
【单选题】 They?()to have a 40%?worldwide?market?share.
①  clean
②  want
③  claim
④  classify
【单选题】 This is the military ____, and nobody is allowed to get in without permission. ?
①  bond ?
②  B. zone ?
③  uniform ?
④  zoo ?
【单选题】 Nothing must be allowed to ____ with our plans for the weekend.
①  influence
②  affect
③  break
④  interfere
【单选题】 Translation: Apple has entered the textbook market.
①  苹果公司已经开发了市场学教材。
②  苹果公司已经进入了教材市场。
③  苹果已经在市场上销售了。
④  苹果已经在市场了。
随机题目
【单选题】 如果是n个数排序,用冒泡排序法需要进行( )轮比较
①  n
②  n-1
③  n+1
④  n*n
【单选题】 设int a=2,b;则执行b=a8;语句后,b的结果是( )
①  0
②  1
③  2
④  3
【单选题】 C语言中的头文件引入的关键字是
①  import
②  using
③  include
④  define
【单选题】 循环嵌套的概念哪个是对的
①  while可以嵌套for,不能嵌套dowhile
②  dowhile不能嵌套for循环语句,可以嵌套while循环语句
③  dowhile、while、for可以互相嵌套
④  for后不只能嵌套for循环语句
【单选题】 以下程序的输出结果是_______? f(int b[],int m,int n) { int i,s=0; for(i=m;in;i=i+2) s=s+b[i]; return s; } int main() { int x,a[]={1,2,3,4,5,6,7,8,9}; x=f(a,3,7); printf(%d\n,x); }
①  7
②  8
③  9
④  10
【单选题】 1. 对下面程序段描述正确的是int x=0,s=0; while (x!=0) s=s+x+1;printf(%d
①  运行程序段后输出0
②  运行程序段后输出1
③  程序段中的控制表达式是非法的
④  程序段循环无数次
【单选题】 在循环语句的循环体中,continue语句的作用是(  )。
①  立即终止整个循环
②  继续执行continue语句之后的循环体
③  结束本次循环
④  结束本次循环并跳出循环
【单选题】 printf中要输出整形变量,占位符为
①  %c
②  %s
③  %f
④  %d
【单选题】 若变量已正确定义,有以下程序段int a=3,b=5,c=7;if(ab)a=b;c=a;if(c!=a)c=b;;printf(%d,%d,%d\na,b,c)其输出结果是
①  语法错误
②  3,5,3
③  3,5,5
④  3,5,7
【单选题】 下列程序执行后的输出结果是________. #include stdio.h void main( ) { int a=5,b=60,c; if (ab) {c=a*b;printf(%d*%d=%d\n,b,a,c);} else {c=b/a;printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12