资源简介
为了做课程设计而编写的一个简单的学生成绩管理系统,拿上来给分享一下。高手的指点一下,飘过就好。。。。。
代码片段和文件信息
// 课程设计.cpp : Defines the entry point for the console application.
//
#include “stdafx.h“
#define N 20 //变量数组长度
#define M 30 //所能存储的记录个数
struct student{ //单个学生的记录结构
char sno[N];
char sname[N];
float MATH;
float DATASTRUCT;
float ENGLISH;
float total;
};
void form(){ //输出表头
printf(“学号 姓名 数学 数据结构 英语 总分\n“);
}//form
void pri(struct student stu[]int i){ //输出函数-输出单个学生记录
printf(“%-15s“stu[i].sno);
printf(“%-10s“stu[i].sname);
printf(“ %-6.2f“stu[i].MATH);
printf(“ %-6.2f“stu[i].DATASTRUCT);
printf(“ %-6.2f“stu[i].ENGLISH);
printf(“ %-6.2f\n“stu[i].total);
}//pri
void Disp(struct student stu[]int n){ //输出函数-输出所存储的所有记录
int i;
if(n==0){
system(“cls“);
pr
- 上一篇:航空客运订票系统(C++)
- 下一篇:局部光照算法实现源代码
评论
共有 条评论