有若干运动员,每个运动员包括编号、姓名、性别、年龄、身高、体重、运动成绩。如果性别为男,参赛项目为长跑和登山;如果性别为女,参赛项目为短跑、跳绳。用一个函数输入运动员信息,用另一个函数输出运动员的信息,再建立一个函数求所有参赛运动员每个项目的平均成绩。 具体程序见: Example_1.c 参考程序如下: // 如果性别为男,参赛项目为长跑和登山;如果性别为女,参赛项目为短跑、跳绳。 #include
#include
#define COUNT 4 char items1[2][5]={" 长跑 "," 登山 "}; char items2[2][5]={" 短跑 "," 跳绳 "}; void InputAthInfo(); void outputAthInfo(); void items_Avg(); struct athlete{ int num; char name[10]; char sex; int age; float height; float weight; char items[2][5]; // 存储两个项目名称 float score[2]; // 存储两个赛项的成绩 }ath[COUNT]; void InputAthInfo(){ int i; for(i=0;i