In order to save time, I () my shopping to once a week.A.cut offB.cut outC.cut upD.cut down

题目
In order to save time, I () my shopping to once a week.

A.cut off

B.cut out

C.cut up

D.cut down


相似考题

3.●试题四下列给定程序中,函数fun()的功能是:对N名学生的学习成绩,按从高到低的顺序找出前m(m≤10)名学生来,并将这些学生数据存放在一个动态分配的连续存储区中,此存储区的首地址作为函数值返回。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:#include<stdio.h>#include<malloC.h>#include<string.h>#include<conio.h>#define N 10typedef struct ss{char num[10];int order;}STU;STU *fun(STU a[], int m){STU b[N],*tt;int i,j,k;(1) ;for(i=0; i<N; i++)b[i]=a[i];for (k=0;k<m;k++){for(i=j=0;i<N;i++)if ( (2) )j=i;tt[k]=b[j];b[j].order=0;}return (3) ;}outresult(STU a[],FILE *pf){int i;for(i=0;i<N; i++)fprintf(pf,"No=%s Mark=%d\n",a[i].num,a[i].order);fprintf(pf,"\n\n");}main(){STU [N]={{"A01",80},{"A02",79},{"A03",66},{"A04",82},{"A05",87},{"A06",93},{"A07",78},{"A08",60},{"A09",85},{"A10",73}};STU *p_order;int i,m;clrscr();printf("*** The Origial data ***\n");outresult(a, stdout);printf("\nGive the numeber of thestudents who have better score:");scanf("%d",&m);while (m>10){printf("\nGive the number of thestudets who have better score:");scanf("%d",&m);}p_order=fun(a,m);printf("*** THE RESULT ***\n");printf("*** The top students ***\n");for(i=0; i<m; i++)printf(" %s %d\n",p_order[i].num,p_order[i].order);free(p_order);}

更多“In order to save time, I () my shopping to once a week. ”相关问题
  • 第1题:

    I was_____ my _____to school when I saw the accident.

    A.on,way

    B.in,way

    C.on,time


    参考答案:A

  • 第2题:

    运行时(run-time)包含一个PHP脚本使用(),而编译时(compile-time)包含一个PHP脚本使用()。()

    A.include_once,include

    B.require,include

    C.require_once,include

    D.以上皆可


    参考答案:D

  • 第3题:

    3、MATLAB的工作区共有三个变量a1, a2, a3,写出把它们保存到文件my_data.mat中的命令

    A.save my_data

    B.save my_data.mat

    C.save('my_data.mat', 'a1', 'a2', 'a3')

    D.save('my_data', 'a1', 'a2', 'a3')


    ABCD

  • 第4题:

    On Sundays she usually does some ___ in ___.

    A、shopping/ big shop

    B、shopping/big shoppings

    C、shoppings/big shops

    D、shopping/big shops


    正确答案:D

  • 第5题:

    If it were fine tomorrow, I ____ shopping.

    A. were to go

    B.am going

    C.would go

    D.will go


    答案:C

    解析:本题考查虚拟语气。句意:如果明天天气好,我就去购物。本句是if引导的条件状语从句,表示与将来事实,从句:if+主语+were to do/should+do,主句:主语+should/would/might/could+do,所以答案选C。


  • 第6题:

    MATLAB的工作区共有三个变量a1, a2, a3,写出把它们保存到文件my_data.mat中的命令

    A.save my_data

    B.save my_data.mat

    C.save('my_data.mat', 'a1', 'a2', 'a3')

    D.save('my_data', 'a1', 'a2', 'a3')


    save my_data;save my_data.mat;save('my_data.mat', 'a1', 'a2', 'a3');save('my_data', 'a1', 'a2', 'a3')