【单选题】【消耗次数:1】
— The water changes into thick ice covering rivers and lakes in winter in Harbin. —_____ in Urumqi and children go skating on it then.
So is it
So it does
So it is
So does it
参考答案:
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang

相关题目
【判断题】 A: I do think thats a good idea. B: So it does.
①  正确
②  错误
【判断题】 A: Tom speaks English very well. B: So he does.
①  正确
②  错误
【单选题】 19.Never____ realised that water is so precious
①  hadI
②  I
③  haveI
④  didI
【多选题】 ---I’m really so bored with so much homework. --- _______.
①  A.So do I
②  B.So am I
③  C.So I am
④  D.I’m bored too
【单选题】 It’s ___________ to see these tiny children play the piano so beautifully.
①  amaze
②  amazingly
③  amazed
④  amazing
【单选题】 The program was so exciting that the children kept their eyes________on the screen.
①  to fix
②  to be fixed
③  fixed
④  fixing
【单选题】 15.The program was so exciting that the children kept their eyes ____on the screen.
①  to fix
②  to be fixed
③  fixed
④  fixing
【单选题】 Cut the ( ) at a 45 degree angle so that the roses can take in more water.
①  flowers
②  stems
③  fruits
④  buds
【单选题】 It _____to see so many children in that mountainous area cannot even afford elementary education.
①  pains her
②  makes her pain
③  is paining
④  is pained
【单选题】 Planning so far ahead _____ no sense -- so many things will have changed by next year.
①  made
②  is making
③  makes
④  has made
随机题目
【单选题】 以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是()
①  chars[10]=abcdefg;
②  chart[]=abcdefg,*s=t;
③  chars[10];s=abcdefg;
④  chars[10];strcpy(s,abcdefg);
【单选题】 putchar函数可以向终端输出一个()。
①  整型变量表达式值
②  实型变量值
③  字符串
④  字符或字符型变量值
【单选题】 回值函数的定义格式正确的是()
①  返回值类型函数名(形式参数列表){语句;return表达式;}
②  void函数名(形式参数列表){语句;return表达式;}
③  返回值类型函数名(实参数列表){语句;return表达式;}
④  void函数名(实参数列表){语句;return表达式;}
【单选题】 若有变量说明:chars,s1[20];执行语句:s=student;s1=s;正确的叙述是:()。
①  二个语句都不正确
②  s所指向的字符串和s1的值都是student
③  第一个语句正确,而第二个语句不正确
④  第二个语句正确,而第一个语句不正确
【单选题】 若有语句:inta=4,p=&a;,下面均代表地址的一组选项是()
①  a,p,*a
②  *a,a,p
③  a,p,*p
④  *p,p,a
【单选题】 已知字母A的ASCII码为十进制数65,且c2为字符型,则执行语句c2=’A’+’6’-’2’;后,c2中的值为()
①  69
②  C
③  D
④  E
【单选题】 函数swap(intx,inty)可以完成对x值和y值的交换,在运行调用函数中的如下语句后,a=2;b=3;swap(a,b);a和b的值分别是()
①  3,2
②  3,3
③  2,2
④  2,3
【单选题】 下面程序执行后的结果是() #include stdio.h int m=0; void fun( ) { m++; } void main( ) { m++; fun( ); m++; printf(%d,m); }
①  0
②  1
③  2
④  3
【单选题】 下列关于C语言注释的叙述中错误的是()。
①  以/*开头并以*/结尾的字符串为C语言的注释符
②  注释可以出现在任何位置,用以提示和注释程序的意义
③  程序编译时,不对注释作任何处理
④  程序编译时,需要对注释进行处理
【单选题】 有如下定义:char a[][6]={abcde,ABCDE,#@xyz};哪个选项可以输出字符串ABCDE()
①  printf(%s,a[0])
②  printf(%s,a[1][6])
③  printf(%s,a[2])
④  printf(%s,a[1])