【单选题】【消耗次数:1】
Don’t borrow money [填空] her.
from
to
for
in
参考答案:
复制
纠错
相关题目
【单选题】 It is said that people can ______ or deposit money from bank through facial recognition, ie, they don’t have to use a bank card.
①  snatch
②  rob
③  draw
④  pull
【单选题】 Don’t forget ______ some money with you.
①  bringing
②  to bring
【单选题】 I don’t know what _______ to comfort her.
①  saying
②  to say
【单选题】 Why not buy a cheaper one, ___ you don’t have enough money?
①  since
②  because
③  for
④  though
【单选题】 23. Realizing that he hadnt enough money and ______ to borrow from his father, he decided to sell his watch.
①  not wanted
②  not to want
③  not wanting
④  . wanting not
【单选题】 I don’t know why she avoids __________ her opinion on the subject.
①  to give
②  to be given
③  giving
④  being given
【单选题】 I don’t think you can work out the maths problem ___ her help.
①  since
②  unless
③  with
④  without
【单选题】 Why don’t you [填空] and ask your mother?
①  go
②  goes
③  going
④  go to
【单选题】 We don’t have [填空] milk in the fridge.
①  any
②  little
③  some
④  many
【单选题】 He____________ her out of her money.
①  chatted
②  changed
③  cheated
④  chose
随机题目
【单选题】 以下程序的运行结果是()。func(inta,intb){intc;c=(ab)?(a-b):(a+b);return(c);}main(){intx=7,y=3;printf("%d\n",func(x,y));}
①  3
②  4
③  7
④  10
【单选题】 设enumcolor{red,yellow=2,blue,white,black}r=white;,执行printf("%d",r);后的输出结果是(   )
①  0
②  1
③  3
④  4
【单选题】 若有定义:structteacher{intnum;charsex;intage;}teacher1;则下面叙述错误的是()。
①  struct是结构类型的关键字
②  structteacher是用户定义的结构类型
③  num、sex、age都是结构变量teacher1的成员
④  teacher1是结构类型名
【单选题】 若有定义:floatx=3.5,y=3.6;则表达式()的值为6。
①  (int)x+(int)y
②  x+y
③  (int)(x+y)
④  int(x+y)
【单选题】 若定义inta=-5,b=-8,c=-12;则表达式a=b||bc的值为()。
①  变量i的值
②  变量j的值
③  0
④  1
【单选题】 若已定义:intm=7,n=4;floatx=3.0,y=8.0,k;则执行语句k=m/2+n*x/y;后,变量k的值是()。
①  3
②  4
③  4.5
④  5
【单选题】 下面函数调用语句含有实参的个数为()。temp((a,b,c),(x,y))
①  2
②  3
③  4
④  5
【单选题】 若已定义inta;不会产生死循环的语句是()。
①  for(;;a+=2);
②  for(a=10;;a--);
③  for(;(a=getchar())!=\n;);
④  while(-1){a++;}
【单选题】 有以下程序:main(){intc;while((c=getchar())!=\n){switch(c-2){case0:case1:putchar(c+4);case2:putchar(c+4);break;case3:putchar(c+3);default:putchar(c+2);break;}}printf("\n");}当输入:247回车,程序的输出结果是()。
①  689
②  6689
③  66778
④  66887
【单选题】 以下程序中的循环执行了()次。#defineN2#defineMN+1#defineNUM(M+1)*M/2main(){inti,n=0;for(i=0;ii++)n++;printf("%d\n",n);}
①  5
②  6
③  8
④  9