【单选题】【消耗次数:1】
If I can get a pay raise, I _______ buy a house.
/
will
would
参考答案:
复制
纠错
相关题目
【单选题】 Our new house is very ____ for me as I can get to the office in five minutes.
①  adaptable
②  convenient
③  available
④  comfortable
【单选题】 It [填空] him a lot of money to buy a house.
①  take
②  takes
③  took
④  taking
【单选题】 I____ a very old watch in my uncles house.
①  came to
②  met with
③  came across
【单选题】 A: Can I help you? B: [填空]. Where do I pay my fees?
①  Thank you
②  As you please
③  Yes, you can
④  Yes, please
【判断题】 On the one hand, I want to sell the house, but on other hand I can’t? bear the thought of moving.
①  正确
②  错误
【单选题】 How much do you ______for this package tour? Can I get a discount?
①  charge
②  change
③  choose
④  chase
【单选题】 ---Excuse me.---___________. ---How can I get to the nearest post office?
①  Yes?
②  That’s OK.
③  How come?
④  Pardon?
【单选题】 A: Would you like to go to the cinema? B: If I can finish my homework. A: [填空]
①  Why bother?
②  Oh, come on!
③  Then what?
④  Thanks a lot.
【单选题】 A: I need to buy a wedding gift for Jane. B: Should we stop at the shopping center? A: [填空]. The weddings not until next week, but I wont have time later to get them anything.
①  Wont be necessary
②  Its your call
③  I suppose so
④  If you insist
【单选题】 Every time I _________ there, I will buy him something nice.
①  went
②  will go
③  go
④  have gone
随机题目
【单选题】 x的值在-20至-5之间为“真”,否则为“假”的正确逻辑表达式为()。
①  -20-5
②  x-20x-5
③  !(x-20)!(x-5)
④  -5-20
【单选题】 ()为正确的变量名。
①  -k15
②  int
③  k_5
④  k.jeep
【单选题】 若有定义intm=4321,n=123,k=21;语句printf("%4d+%3d+%2d",m,n,k);执行后的输出结果是()。
①  4321432143211231231232121
②  432112321
③  4321+123+21
④  432+123+021
【单选题】
①  0
②  3
③  12
④  15
【单选题】 执行下面程序段后,输出字符B的个数是(   )x=0;while(x=5){printf("B");x+=2;}
①  0个
②  3个
③  5个
④  6个
【单选题】 若有定义:intx;charc=A;则正确的赋值表达式是()。(说明:A的ASCII码的十进制值为65,a的ASCII码的十进制值为97)
①  x=c+32
②  x=c+ABC
③  x=c+CBA
④  x=ABC
【单选题】
①  函数调用
②  int型表达式
③  double型表达式
④  非法表达式
【单选题】
①  charintlongint=folatdouble
【单选题】 对下面程序描述正确的是()。#includestdio.h#includestdlib.hvoidmain(){FILE*in,*out;if((in=fopen("file1.txt","a+"))==NULL){printf("cannotopenfile1\n");exit(0);}if((out=fopen("file2.txt","a+"))==NULL){printf("cannotopenfile2\n");exit(0);}while(!feof(out))fputc(fgetc(out),in);fclose(in);fclose(out);}
①  程序实现在屏幕上显示磁盘文件file1.txt的内容
②  程序实现将磁盘文件file2.txt复制到磁盘文件file1.txt
③  程序实现将两个磁盘文件file1.txt和file2.txt的内容合二为一
④  程序实现在屏幕上显示磁盘文件file2.txt的内容
【单选题】 以下程序运行后,a的值是()。main(){inta,b;for(a=1,b=1;aa++){if(b=20)break;if(b%3==1){b+=3;continue;}b-=5;}}
①  101
②  100
③  8
④  7