更多“Son (in the kitchen): Shall I turn on the burner?Mother: ______________. I haven ’t fini ”相关问题
  • 第1题:

    I________ from him since he left.

    A、haven’t heard

    B、didn’t receive

    C、haven’t got

    D、didn’t have


    正确答案:A

  • 第2题:

    Frankly speaking, I’d rather you __________ anything about it for the time being.

    A) didn’t do           B) haven’t done            C) don’t do            D) have done

     


    A

    虚拟语气。 

  • 第3题:

    Frankly speaking,I′d rather you__________anything about it for the time being.

    A.didn't do
    B.haven't done
    C.don't do
    D.have done

    答案:A
    解析:
    【考情点拨】考查would rather的用法。【应试指导】句意:坦率地说,我宁愿你现在对此事什么也不做。would rather引导的从句中应用虚拟语气,且此处表示与现在事实相反的虚拟语气,故用一般过去时。故选A。

  • 第4题:

    I’d rather you ____ come here to see the film. It’s really long and boring.

    A. haven’t

    B. don’t

    C. didn’t

    D. hadn’t


    正确答案:C

  • 第5题:

    下列程序中函数son()的功能是对数组a中的数据进行由大到小的排序。includevoid sort(in

    下列程序中函数son()的功能是对数组a中的数据进行由大到小的排序。 #include<stdio.h> void sort(int a[],int n) { int i,j,t; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(a[i]<a[j]) { t=a[i];a[i]=a[j];a[j]=t; } } main() { int a[10]={1,2,3,4,5,6,7,8,9,10},i; sort(&a[1],7); for(i=0;i<10;i++)printf("%d,",a[i]); } 程序运行后的输出结果是( )。

    A.1,2,3,4,5,6,7,8,9,10,

    B.10,9,8,7,6,5,4,3,2,1,

    C.1,8,7,6,5,4,3,2,9,10,

    D.1,2,10,9,8,7,6,5,4,3,


    正确答案:C
    解析:本程序中的函数sort(inta[],intn)实现的功能是将数组a中的前n个数进行从大到小排序。sort(&a[1],7)是将数组中从a[1]到a[7]这7个数进行从大到小排序,其他数不变。