C语言实验指导(不含答案) 下载本文

girl.grade=82;

printf(“boy:%c is %d years old and got a grade of

%d\\n”, , , );

printf(“girl:%c is %d years old and got a grade of

%d\\n”, , , );

}

请写出运行结果:

(2)结构体数组案例。设有三个候选人,Zhang,Wang和Li,设有10个人参加投票,每次输入一个得票的候选人的名字,要求最后输出各候选人的得票结果,请设计程序对候选人的得票数进行统计。(SA6.3)

# include # include

struct person /*候选人信息结构体,这是一个全局的结构体数组*/

{

char name[20]; /*姓名*/

int count; /*得票数*/ }stu[3]={“Zhang”,0,”Wang”,0,”Li”,0}; void main() {

int i,j;

char leader_name[20];

for(i=1;i<=10;i++) /*设有10个人参加投票*/

{scanf(“%s”, leader_name); /*输入得票人姓名*/ for(j=0;j<3;j++)

if(strcmp(leader_name,stu[i].name)==0) ; }

printf(“\\n”);

for(i=0; , ) printf(“%5s: %d\\n”, stu[i].name , ); } 输入:

Zhang Wang Li Wang Li Li Zhang Li Li Wang

请写出运行结果:

(3)指向结构体的指针案例。每个学生包括学号、姓名和成绩数据,要求找出成绩最高者的姓名和成绩。(设有4个学生)。

本题涉及指向结构体数组的指针的定义和使用。 # include void main() {

struct student {

int num;

char name[20]; float score; }stu[4],*p; int i,temp=0; float max; for(i=0;i<4;i++) scanf

(“%d %s %f”, , , );

max=stu[0].score; for(i=1;i<4;i++)

{ if( ) max=stu[i].score; temp=i; } }