问题 问答题

学生的记录由学号和成绩组成,N名学生的数据已在主函数中放入结构体数组s中,请编写函数fun(),该函数的功能是:把高于等于平均分的学生数据放在b所指的数组中,低于平均分的学生数据放在c所指的数组中,高于等于平均分的学生人数通过形参n传回,低于平均分的学生人数通过形参m传回,平均分通过函数值返回。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
试题程序:
#include <stdio.h>
#define N 12
typedef struct
char num[10];
double s;
STREC;
double fun(STREC *a,STREC *b,STREC *c,int *n,int *m)

main()

STREC s[N]="GA05",65,"GA03",86,
"GA02",76,"GA04",95,"GA01",93,
"GA07",78,"GA08",68,"GA06",88,
"GA09",60,"GA11",54,"GA12",56,
"GA10",98;
STREC h[N],l[N],t;
FILE *out;
int i,j,m,n;
double ave;
ave=fun(s,h,l,&n,&m);
printf("The %d student data which is higher than %7.3f:\n",n,ave);
for(i=0;i<n;i++)
printf("%s %4.lf\n",h[i].num,
h[i].s);
printf("\n");
printf("The %d Student data which iS lower than%7.3f:\n",m,ave);
for(i=0;i<m;i++)
printf("%s %4.1f\n",l[i].num, l[i].s);
printf("\n");
out=fopen("out26.dat", "w");
fprintf(out, "%d\n %7.3f\n",n,ave);
for(i=0;i<n-1;i++)
for(j=i+1;i<n;j++)
if(h[i].s<h[j].s)
t=h[i];h[i]=h[i];h[j]=t;
/*分数从现到低排列*/
for(i=0;i<n; i++)
fprintf(out,"%4.1f\n",h[i].s);
fprintf(out,"%d\n %7.3f\n",m,ave);
for(i=0;i<m-1;i++)
for(j=i+1;i<m;j++)
if(l[i].s<l[j].s)
t=l[i];l[i]=l[j];l[j]=t;
/*分数从高到低排列*/
for(i=0;i<m;i++)
fprintf(out,"%4.1f\n",l[i].s);
fclose(out);

答案

参考答案:double fun (STREC *a,STREC *b,STREC *C, int *n,int *m)
{
int i;
double av=0.0;
*n=0;
*m=0;
for(i=0;i<N;i++)
av=av+a[i].S;
av=av/N; /*求平均值*/
for(i=0;i<N;i++)
if(av<=a[i].s)
{
b[*n]=a[i]; /*将高于等于平均分的学生存从所指存储单元中,并统计人数*/
*n=*n+l;
}
else
{
c[*m]=a[i]; /*将低于平均分的学生存入c所指存储单元中,并统计人数*/
*m=*m+1;
}
return av; /*返回平均分*/
}

解析: 本题中第1个循环的作用求出所有分数的总和,只有进行了av=av/N后才得到平均值(我们在前面的程序中碰到过类似问题)。第2个循环的作用是将高于等于平均分的学生存/kb所指存储单元中,将低于平均分的学生存入c所指存储单元中。同一结构体变量之间可以互相赋值。
本程序中直接用*n,*m来分别表示b,c的下标,注意开始时要给*n,*m赋0,且使用时不能少*号。因为单独的n, m是一个指针变量,而我们要用的是它所指向的那个存储单元中的值。

单项选择题
阅读理解

阅读理解。

     Edinburgh is one of Scotland's two big cities, the capital. It is affectionately known and has enormous

historical significance. Situated on the east coast of Scotland, Edinburgh proudly offers a window to past.

Indeed Edinburgh has been Scotland's royal city since 1437. Most of Edinburgh's sights are contained within

two districts: the old town and the contrasting new town. The largely medieval Royal Mile which stretches

for a statute (法定的)mile and the 107 yards from Edinburgh Castle to the Palace of Hollyroodhouse, dominates

the city's central area. The Royal Mile has been quoted as being: The largest, longest and finest street for

buildings and density of inhabitants, not only in Britain, but in the world.

     To millions of visitors, Edinburgh Castle is a must see because there are many treasures. Princess Street

is located in Edinburgh's new town directly below the castle. Next to Princess Street, in the shadow of

Edinburgh Castle lies the broad green Princess Street Gardens. This is one of the most delightful gardens I

have even visited.

     Another marvelous site to visit is Calton Hill. I sat for hours on it, just happy to breathe the fresh air.

     I stayed in Edinburgh for about two weeks and never tired of the cityscape. I must admit the Edinburgh

is really a place no traveler will cross out from the traveling list.

1. Where can you find this passage?[ ]

A. In a local guide book

B. In a travel journal

C. In a student's diary

D. In a science report

2. Which is TRUE according to the passage? [ ]

A. Royal Mile is the longest street in the world

B. Next to Edinburgh Castle is Princess Street

C. Palace of Holyroodhouse is at one end of Royal Mile

D. Royal Mile was built in 1723

3. Arrange the following places in the order from the smallest to the biggest.[ ]

A.Edinburgh, Scotland, Britain

B.Scotland, Edinburgh, Britain

C.Edinburgh, Britain, Scotland

D.Britain, Scotland, Edinburgh

4. What does the underlined word mean in the passage? [ ]

A. Overlook

B. Consist of

C. Be next to

D. Be the most important thing in

5. What's the author's purpose of writing the passage? [ ]

A. To tell a traveling experience

B. To introduce a site of interest

C. To recommend a travelling place

D. To give a geography lesson