【单选题】【消耗次数:1】
It took us ______ less than three hours to do the work.
no
not
none
nothing
参考答案:
复制
纠错
相关题目
【单选题】 None of us can work out the puzzle, _____ we?
①  can
②  can’ t
③  do
④  don’ t
【单选题】 The snowstorm _____________ us three hours because we had to drive very slowly.
①  decided
②  deepened
③  delayed
④  detailed
【单选题】 Short-term memorylasts less than _________.
①  seconds
②  weeks
③  months
④  years
【判断题】 He is less careful than his sister.
①  正确
②  错误
【单选题】 Some of the employees in the company are to work at flexible hours.
①  taken
②  achieved
③  allowed
④  formed
【单选题】 _________ no money, we could do nothing.
①  Having
②  Had
③  Have
④  Losing
【单选题】 Scarcely less important than machinery in the agricultural revolution was science.
①  A. 在农业革命中,科学没有机械重要。
②  B. 在农业革命中,机械没有科学重要。
③  C. 在农业革命中,科学和机械几乎同等重要。
④  D. 在农业革命中,机械和科学都不怎么重要。
【单选题】 Scarcely less important than machinery in the agricultural revolution was science.
①  [A]在农业革命中,科学没有机械重要。
②  [B]在农业革命中,机械没有科学重要。
③  [C]在农业革命中,科学和机械几乎同等重要。
④  [D] 在农业革命中,机械和科学都不怎么重要。
【单选题】 No sooner _______ than they began to work.
①  they had arrived
②  they would arrive
③  had they arrived
④  would they arrive
【判断题】 A: What do they do? B: They work in a bank.
①  正确
②  错误
随机题目
【单选题】 设整型变量n的值为2,执行语句“n+=n-=n*n”后,n的值是()
①  0
②  2
③  -4
④  4
【单选题】 如果int a=3,b=4;则条件表达式“a<b? a:b”的值是()。
①  3
②  4
③  0
④  1
【单选题】 若w=1,x=2,y=3,z=4,则表达式w<x?w:y<z?y:z的值是()
①  4
②  3
③  2
④  1
【单选题】 设有定义:intk=1,m=2;floatf=7;,则以下选项中错误的表达式是()
①  k=k+=k
②  -k++
③  k%int(f)
④  f=k%m
【单选题】 下面有关字符数组的描述中错误的是()。
①  字符数组可以存放字符串
②  字符串可以整体输入,输出
③  可以在赋值语句中通过赋值运算对字符数组整体赋值
④  不可以用关系运算符对字符数组中的字符串进行比较
【单选题】 冒泡排序(BubbleSort)的基本概念是:依次比较相邻的两个数,将小数放在前面,大数放在后面。即在第一趟:首先比较第1个和第2个数,将小数放前,大数放后。然后比较第2个数和第3个数,将小数放前,大数放后,如此继续,直至比较最后两个数,将小数放前,大数放后。如果以上过程为一趟的话,如果一个数组有6个元素,那么要从小到大排列,利用冒泡排序法需要几趟比较过程()
①  6次
②  5次
③  4次
④  7次
【单选题】 设j和k都是int类型,则for循环语句 for(j=0,k=-1;k=1;j++,k++)printf(****\n);().
①  循环结束的条件不合法
②  是无限循环
③  循环体一次也不执行
④  循环体只执行一次
【单选题】 若有说明语句“int a[5],*p=a;”,则对数组元素的正确引用是()。
①  a[p]
②  p[a]
③  *(p+2)
④  p+2
【单选题】 若输入的值为123456,则() void swap(int password) { if(password == 123456) { printf(登录成功!); } else { printf(密码错误!); } } void main() { scanf(%d,&password); swap(); }
①  无结果
②  程序无法运行,报错
③  密码错误!
④  登录成功!
【单选题】 若有说明:int n=2,*p=&n,*q=p,则以下非法的赋值语句是:()
①  p=q
②  *p=*q
③  n=*q
④  p=n