实在有点发杂,很烦的问题,你既然不会写,我给你个大致的系统设计好了。
剩下的函数自己写吧,呵呵
#include "stdafx.h"
#include
#include
#include
#include
using namespace std;
struct student{ //学生信息
string name;
short int classes;
int Fen;
};
struct Sport{ //记录信息
string SportName;
string Time;
student a1;
student a2;
student a3;
student a4;
student a5;
};
class Sporttt{ //这个类完成输入到文件的操作,当需要输入的时候,新建一个这个类的对象
public:
Sport sport;
string cinn();
.......................................
}
class Query{//这个类完成读取文件数据,并输出的操作
Query(){fstream fin;
fin.open(".........");.........}
...........
}
void main()
{
int t;
cout<<"——————欢迎进入运动会记录系统——————"<
.........
.........
if(.t == ??.....)...
elseif
.....
..............
}