当前位置:   article > 正文

运动会分数统计系统c语言,运动会分数统计系统程序

c语言田径比赛成绩统计系统

#include

#include

#include

#include

//#include /*屏幕操作函数*/

#define MAX 50

//#define NULL 0

typedef struct node1{

int school; /*学校编号*/

int record; /*项目成绩*/

struct node1 *next; /*链域*/

}Schools;

typedef struct {

int item; /*项目编号*/

Schools *firstschool; /*链域指向链表中第一个结点*/

}ITEM;

typedef struct {

int z; /* 项目总数 */

ITEM a[MAX];

}ALLitems;

typedef struct node2 {

int item; /*该学校获奖的项目*/

int record; /*项目成绩*/

struct node2 *next; /*链域*/

}Items;

typedef struct {

int school; /*学校编号*/

int score; /*学校总分*/

int boys; /*男团体总分*/

int girls; /*女团体总分*/

Items *firstitem; /*链域指向链表中第一个获奖项目的结点*/

}SCHNode;

typedef struct {

int n; /* 学校总数 */

SCHNode b[MAX];

}ALLNode;

ALLitems *g1;

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/812891
推荐阅读
相关标签
  

闽ICP备14008679号