【单选题】【消耗次数:1】
You’ d better add it up; I’ m no good at____.
fingers
calculate
figures
image
参考答案:
复制
纠错
相关题目
【判断题】 You’ve misspelled this word again. You’d better look it up.
①  正确
②  错误
【单选题】 I’m thinking of buying a computer. Can you ( ) a good make to me?
①  advise
②  recommend
③  propose
④  suggest
【单选题】 14. I’m confident that you are _______a good job at your new position.
①  able of doing
②  capable of doing
③  capable to do
④  able at doing
【单选题】 Thats pretty good that you get up and go running, but I ______ like running early in the morning since I’ve got to prepare breakfast for my family.
①  have a good time
②  have a hard time
③  have time
④  have much time
【单选题】 ______ either you or I good at drawing?
①  Am
②  Are
③  Is
④  Do
【单选题】 You’d better ________ to hospital at once.
①  go
②  to
③  going
④  gone
【单选题】 I hope you [填空]get better soon.
①  do
②  /
③  must
④  will
【单选题】 Good morning, sir. May I help you?
①  No, I don’t buy anything
②  No, I don’t need your help
③  Yes, I need some sugar
④  Oh, no. That’s OK
【单选题】 40.—I`m sorry I didn`t do a good job. ---Never mind.____you have tried your best.
①  Aboveall
②  Aboveall
③  Atall
④  Afterall
【单选题】 Hi, Sam, I think you did a good jo@@
①  Thank you
②  Don’t mention it
③  Not at all
④  I did it quite badly
随机题目
【单选题】 for(表达式1;;表达式3)可理解为____。
①  for(表达式1;0;表达式3)
②  for(表达式1; 表达式1;表达式3)
③  for(表达式1; 表达式3;表达式3)
④  for(表达式1;1;表达式3)
【单选题】 下面代码:int x=10,y,*p;*p=y=*p;y的值
①  1
②  10
③  3
④  错误
【单选题】 Cfree中断点调试的快捷键是
①  F1
②  F5
③  ctrl+shift
④  F9
【单选题】 运行下面程序时,若从键盘输入3,5,则程序的输出结果是________. #include stdio.h void main( ) { int x,y; scanf(%d,%d,x, if (x==y) printf(x==y else if (xy) printf(xy else printf(xy }
①  35
②  53
③  xy
④  xy
【单选题】 运行下面程序时,若从键盘输入3,则程序的输出结果是_______.#include stdio.h(一般) void main( ){ int x; scanf(%d,if (!x)printf(x等于零 elseprintf(x不等于零}
①  x等于零
②  x不等于零
③  3等于零
④  3不等于零
【单选题】 数组元素作参数进行函数调用时,实参和形参都是简单变量,它们之间数据传递的过程描述正确的是?
①  实参将地址传递给形参,并释放原先占用的存储单元;
②  实参将地址传递给形参,调用结束时形参再将此地址回传给实参;
③  实参将值传递给形参,调用结束时形参再将其值回传给实参;
④  实参将值传递给形参,调用结束时形参并不将其值回传给实参;
【单选题】 判断x是否最大值的程序,则填空处应填写_______.#include stdio.h void main( ) { int x,y,z; scanf(%d%d%d,x,y, if (_______) printf(最大值是:%d, x); }
①  (x=y)(x=z)
②  (x=y) || (x=z)
③  (x=z)
④  (x=y) (y=z)
【单选题】 C-Free中单步执行的快捷键是
①  F7
②  F8
③  F9
④  Home
【单选题】 C语言中多行注释的写法正确的是
①  ///
②  //
③  -*
④  -/* */
【单选题】 以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
①  1 0 4
②  2 1 5
③  0 1 2
④  1 2 3