【单选题】【消耗次数:1】
—ImgoingtoHangzhouforaholidaythisweekend.—_________youarethere,canyoubuymesomegreentea?
Because
While
If
Though
参考答案:
复制
纠错
相关题目
【单选题】 Kingsley took a lot of ______________ with her while traveling because she was doing scientific research on fish.
①  furniture
②  equipment
③  information
④  education
【单选题】 Eggs, though rich in nourishments, have _______ of fat.
①  a large number
②  the large number
③  a large amount
④  the large a mount
【单选题】 Seeing the enemy, the hero was behaving as though nothing______.
①  was happening
②  would happen
③  had happened
④  happened
【单选题】 Though faced with many difficulties, he would not _______ online learning.
①  give up
②  get through
③  get by
④  give in
【单选题】 C语言中while与do-while语句的主要区别是(  )。
①  do-while的循环体至少无条件执行一次
②  do-while允许从外部跳到循环体
③  while的循环体至少无条件执行一
④  while的循环控制条件比do-while的严格
【单选题】 C语言中while 和do-while 循环的主要区别是(  )。
①  do-while 的循环体不能是复合语句
②  while 的循环控制条件比do-while 的循环控制条件严格
③  do-while 允许从外部转到循环体内
④  do-while的循环体至少无条件执行一次
【单选题】 C语言中while和do-while循环的主要区别是( )?
①  do-while的循环体至少无条件执行一次
②  while的循环控制条件比do-while的循环控制条件严格
③  do-while允许从外部跳转到循环体内
④  do-while的循环体不能是复合语句
【单选题】 Her parents objected to ____ that farmer, though he has a lot of money.?
①  her marrying ?
②  marrying ?
③  marry ?
④  her marrying with?
【单选题】 These goods are _____ for export, though a few of them may be sold on the home market.
①  essentially
②  completely
③  necessarily
④  remarkably
【单选题】 the old couple decided to ____ a boy and a girl though they had three of their own.
①  adapt
②  bring
③  receive
④  adopt
随机题目
【单选题】 在for语句中,假定循环体共被执行n次,则共被计算( )次。
①  1
②  n-1
③  n
④  n+1
【单选题】 使用“typedef int CC[4][6];”语句之后,再使用“CC a;”语句,则a所占用的存储空间的字节数为( )。
①  10
②  24
③  48
④  96
【单选题】 将两个字符串连接起来组成一个字符串时,选用( )函数。
①  strlen()
②  strcap()
③  strcat()
④  strcmp()
【单选题】 当处理特定问题时的循环次数已知时,通常采用( )循环来解决。
①  for
②  while
③  do-while
④  Switch
【单选题】 字符串\a\xy=4\n的长度为( )。
①  8
②  9
③  10
④  11
【单选题】 假定a为一个数组名,则下面的( )表示有错误。
①  a[i]
②  *a++
③  *a
④  *(a+1)
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为( )。
①  2
②  4
③  6
④  8
【单选题】 假定一条定义语句为“int a[10],x,*pa=a;”,若要把数组a中下标为3的元素赋值给x,则不正确的语句为( )。
①  x=pa[3];
②  x=*(a+3);
③  x=a[3];
④  x=*pa+3;
【单选题】 在下面循环语句中内层循环体S语句的执行次数为( )。 for(int i=0;ii++) for(int j=i;jj++)S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 假定有一个元素类型为double的二维数组为a[4][6],其中a[2][5]元素的字节地址为( )。
①  (char*)a+24
②  (char*)a+136
③  (char*)a+192
④  (char*)a+10