【单选题】【消耗次数:1】
--Haventseenyouforages!Whatareyoubusydoingnow?_______________________________
Ihatetheweatherhere.
Myhairisgettingabitlonger.
Yeah,thanksforcoming.
Iamworkingparttimeinabookshop,youknow.
参考答案:
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang

相关题目
【单选题】 –That’sabeautifulsongtheyareplaying,isn’tit?-________.
①  Iknowwhatyoumean.
②  Yeah,it’sgreat!
③  Whataboutyou?
④  Metoo.
【单选题】 ---DidyouhaveagoodtimeinThailandlastweek?---______,itwastoohot.
①  Notreally
②  Yeah,whynot
③  Oh,great
④  You’reright
【单选题】 A: Id like to ask you a question. B: [填空]
①  Yes, go ahead.
②  Sorry, Im kind of busy.
③  OK, whats up?
④  Yeah, whats on your mind?
【单选题】 A: Havent seen you for ages! What are you busy with now? B: [填空].
①  Long time no see
②  Glad to see you
③  Yeah, thanks for coming
④  I am working part time in a bookshop, you know
【单选题】 Haven’t seen you for ages! What are you busy doing now?____________
①  I hate the weather here.
②  My hair is getting a bit longer.
③  I am working part time in a bookshop, you know.
④  Yeah, thanks for coming.
【单选题】 —Guest: Oh, it’s ten o’clock. I’d better go now.—Host: ____.
①  OK. Please walk slowly and take care.
②  Why do you want to go now? Don’t you want to stay?
③  Yeah, it’s really late. Why not immediately?
④  Won’t you stay for another cup of coffee?
随机题目
【单选题】 执行下面程序后,运行结果是 #includevoid main( ) { int x=41,y=1; if (x%3==0 x%7==0) { y+=x;printf(y=%d\n} else {y=x;printf(y=%d} }
①  y=41
②  y=43
③  y=42
④  y=1
【单选题】 在C语言中,以下叙述不正确的是
①  在C程序中,无论是整数还是实数,都能被准确无误的表示
②  在C程序中,变量名代表存储器中的一个位置
③  静态变量的生存期与整个程序的生存期相同
④  C语言中变量必须先定义后引用
【单选题】 以下程序段. x=-1; do { x=x*x; } while (!x);
①  是死循环
②  循环执行两次
③  循环执行一次
④  有语法错误
【单选题】 下列程序执行后的输出结果是 #includevoid 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
【单选题】 有如下程序: #includevoid main( ) { int a=2,b=-1,c=2; if (ab) if (b0) c=0; else c++; printf(%d\n } 该程序的输出结果是
①  0
②  1
③  2
④  3
【单选题】 下述对C语言字符数组的描述中错误的是
①  字符数组可以存放字符串
②  字符数组中的字符串可以整体输入、输出
③  可以在赋值语句中通过赋值运算符=对字符数组整体赋值
④  不可以用关系运算符对字符数组中的字符串进行比较
【单选题】 下面合法的C语言字符常量是
①  \t
②  A
③  65
④  A
【单选题】 未标识关系x≥y≥z,应使用C语言表达式
①  (x=)(y=z)
②  (x=y)AND(y=z)
③  (x=z)
④  (x=y)(y=z)
【单选题】 下面程序的输出是 int fun3(int x) {static int a=3; a+=x; return(a); } void main() {int k=2,m=1,n; n=fun3(k); n=fun3(m); printf(%d\n }
①  3
②  4
③  6
④  9
【单选题】 一个C语言的执行是从
①  本程序的主函数开始,到本程序的主函数结束
②  本程序的第一个函数开始,到本程序的最后一个函数结束
③  本程序的主函数开始,到本程序的最后一个函数结束
④  本程序的第一个函数开始,到本程序的主函数结束