奶头挺立呻吟高潮av全片,成人试看120秒体验区,性欧美极品v,A片高潮抽搐揉捏奶头视频

等級考試

計算機等級考試C語言沖刺題程序改錯題

時間:2024-10-24 06:45:50 等級考試 我要投稿
  • 相關推薦

2014年計算機等級考試C語言沖刺題(程序改錯題)

  試題一

2014年計算機等級考試C語言沖刺題(程序改錯題)

  下列給定的程序中,函數proc()的功能是:用選擇法對數組中的m個元素按從小到大的順序進行排序。

  例如,排序前的數據為:11 32 -5 2 14則排序后的數據為:-5 2 11 14 32

  請修改程序中的錯誤,使它能得到正確結果。

  注意:不要改動main()函數,不得增行或刪行,也不得更改程序的結構。

  試題程序:

  #include

  #define M 20

  void proc(int a[],int n)

  {

  int i,j,t,P;

  //****found****

  for(j=0;j {

  P=j;

  for(i=j;i if(a[i] p=i;

  t=a[p]];

  a[p]=a[j];

  //****found****

  a[p]=t:

  }

  }

  void main()

  {

  int arr[M]={11,32,-5,2,14).i,m=5;

  printf(”排序前的數據:”);

  for(i=0;i printf(”%d”,arr[i]):

  printf(”\n”);

  proc(arr,m):

  printf(”排序后的順序:”);

  for(i=0;i printf(”%d”,arr[i]);

  printf(”\n”);

  }

  }

  試題二

  下列給定程序中,函數proe()的功能是:對M名學生的學習成績,按從高到低的順序找出前m(m<10)名學生來,并將這些學生數據存放在一個動態分配的連續存儲區中,此存儲區的首地址作為函數值返回。

  請修改程序中的錯誤,使它能得出正確的結果。

  注意:不要改動main()函數,不得增行或刪行,也不得更改程序的結構。

  試題程序:

  #include%stdlib.h>

  #include

  #include

  #include

  #include%malloe.h>

  #define M 10

  typedef struct ss

  {

  char num[10];

  int s;

  }

  STU;

  STU *proc(STU a[],int m)

  {

  STU b[-M],*t;

  int i,j,k;

  //****found****

  *t=calloc(m,sizeof(STU));

  for(i=0;i for(k=0;k {

  for(i=j=0;i if(b[i].s>b[j].s)j=i;

  //****found****

  t[k].num=b[j].num;

  t[k].s=b[j].S;

  b[j].s=0;

  }

  return t:

  }

  void outresuh(STU a[],FILE *pf)

  f

  int i;

  for(i=0;i fprintf(pf,”No=%s Mark=%d\n”,

  a[i] mum,a[i].s);

  fprintf(pf,”\n\n”);

  )

  void main()

  {STU stu[M]={{¨A01”,81},{¨A02”,89},

  {¨A03”,66},{”A04”,87),{”A05”,77),

  {”A06”,90),{"A07”,79),{”A08”,61),

  {”A09”,80},{”A10”,71));

  STU+pOrder;

  int i,m;

  system(”CLS”);

  printf(”****THE RESULT****\n”);

  outresuh(stu,stdout);

  print{(”\nGive the number of the students

  who have better score:”);

  scanf(”%d”,&m);

  while(m>10)

  printf(”\nGive the number of the

  students who have better score:”);

  scanf(”%d”,&m);

  }

  p()rder=proc(stu,m);

  printf(”****THE RESULT****\n”);

  printf(”The lop:\n”);

  for(i=0:i printf(”%s%d\n”,pOrder[i].hum,

  pOrder[i].s);

  free(pOrder);

  )

  試題三

  下列給定程序中,函數proc()的功能是:根據整型形參n的值,計算如下公式的值。

  t=i-1/(2*2)-1/(3*3)-…-1/(n*n)

  例如.當n=7時。t=0.188203。

  請修改函數proc()中的錯誤,使它能得出正確的結果。

  注意:不要改動main()函數,不得增行或刪行,也不得更改程序的結構。

  試題程序:

  #include

  #include

  #include

  double proc(int n)

  {double y=1.0;

  inl i;

  //****found****

  for(i=2;i //****found****

  y-=1/(i*i):

  telurn(y);

  }

  void main()

  { int n=7:

  system(”CLS”):

  print[(”\nThe result is%lf\n”,proe(n))。

  }

  試題四

  下列給定程序中函數proc的功能是:取出長整型變量s中偶數位上的數,依次構成一個新數放在t中。例如,當s中的數為123456789時,t中的數為2468。請修改程序中的錯誤,使它能得出正確的結果。

  注意:不要改動main()函數,不得增行或刪行,也不得更改程序的結構。

  試題程序:

  #include

  #include

  #include

  //****found****

  void proc(1ong s,long t)

  {long s1=10;

  s/=10:

  *t=s;

  //****found****

  while(s<0)

  { s=s/100;

  *t=s*s1+*t;

  s1=s1*10:

  }

  void main()

  {long S,t;

  system(”CLs”);

  printf(”\nPlease enter s:”);

  scanf(”%ld”,&s);

  proc(s,&t):

  printf(”The result is:%ld\\n”,t);

  }

  試題五

  給定程序中,函數proc()的功能是:使數組中的元素的值縮小5倍。

  請修改程序中的錯誤,使它能得出正確的結果。

  注意:不要改動main()函數,不得增行或刪行,也不得更改程序的結構。

  試題程序:

  #include

  #include

  #include

  float m[10];

  f f****found****

  int proc(void)

  {

  int J;

  printf(”In subfunc after calling\n”);

  for(j=0;j<10;j++)

  {

  |f****found****

  printf(”%f”,m[j]%5);

  }

  }

  void main()

  {

  int i;

  printf(”In main before calling\n”);

  for(i=0;i<10;i++)

  {

  m[i]=i+20:

  printf(”%f”,m[i]);

  }

  proc();

  printf(”\nIn main after calling\n”):

  for(i=0;i<10;i++)

  printf(”%f”,m[i]/S):

【計算機等級考試C語言沖刺題程序改錯題】相關文章:

C語言程序改錯題練習03-27

計算機等級考試二級C語言真題09-26

2016年計算機等級C語言考試真題及答案03-17

C語言考前沖刺題03-28

2017計算機二級考試C語言考前沖刺題12-04

2017計算機二級考試《C語言》考前沖刺題及答案12-09

全國計算機等級考試二級C語言03-29

計算機考試C語言預習自測題03-20

C語言程序的實現09-27

主站蜘蛛池模板: 阜康市| 湘西| 巴塘县| 龙游县| 新河县| 达日县| 克什克腾旗| 土默特右旗| 阜城县| 宿松县| 象州县| 交口县| 松滋市| 中江县| 灵武市| 红河县| 进贤县| 无为县| 顺昌县| 彰化县| 噶尔县| 东平县| 高邮市| 三都| 沙坪坝区| 云浮市| 怀安县| 南充市| 高州市| 扶余县| 峨眉山市| 长泰县| 屯门区| 都昌县| 双柏县| 霸州市| 临漳县| 丹寨县| 祁阳县| 海城市| 景洪市|