├── .gitignore ├── StudentScoreManagerSystem ├── .gitignore ├── Makefile.win ├── Student.h ├── StudentManageSystem.dev ├── StudentManageSystem.layout ├── disposal.c ├── input.c ├── main.c ├── manage.c ├── print.c ├── 优等生.txt ├── 原始数据.txt ├── 学生不及格科目.txt ├── 学生综合成绩.txt ├── 成绩管理系统.c └── 统计数据.txt ├── data.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /StudentScoreManagerSystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/.gitignore -------------------------------------------------------------------------------- /StudentScoreManagerSystem/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/Makefile.win -------------------------------------------------------------------------------- /StudentScoreManagerSystem/Student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/Student.h -------------------------------------------------------------------------------- /StudentScoreManagerSystem/StudentManageSystem.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/StudentManageSystem.dev -------------------------------------------------------------------------------- /StudentScoreManagerSystem/StudentManageSystem.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/StudentManageSystem.layout -------------------------------------------------------------------------------- /StudentScoreManagerSystem/disposal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/disposal.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/input.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/main.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/manage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/manage.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/print.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/优等生.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/优等生.txt -------------------------------------------------------------------------------- /StudentScoreManagerSystem/原始数据.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/原始数据.txt -------------------------------------------------------------------------------- /StudentScoreManagerSystem/学生不及格科目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/学生不及格科目.txt -------------------------------------------------------------------------------- /StudentScoreManagerSystem/学生综合成绩.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/学生综合成绩.txt -------------------------------------------------------------------------------- /StudentScoreManagerSystem/成绩管理系统.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/成绩管理系统.c -------------------------------------------------------------------------------- /StudentScoreManagerSystem/统计数据.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/StudentScoreManagerSystem/统计数据.txt -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/data.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/910515542/StudentScoreManagerSystem/HEAD/readme.txt --------------------------------------------------------------------------------