void SInfo::StuRead() //从文件读入数据
{
StuNode *p;
p = StuListHead;
ifstream in("StudentList.txt");
if (!in) { cout << "没有学生信息,请先录入学生信息!" << endl; return; }
while (!in.eof())
{
int num, math, eng, yuwen, sum;
in >> num >> math >> eng >> yuwen >>sum;
StuInsert(num,math,eng,yuwen);
}
}
void SInfo::StuSave() //保存学生信息
{
StuNode *p;
p = StuListHead->nextstu;
ofstream out("StudentList.txt");
if (!out) { cout << "不能打开文件!" << endl; return; }
while (p != NULL)
{
out << p->num << '\t' << p->math << '\t' << p->eng << '\t' << p->yuwen << '\t' << p->sum << '\n';
p = p->nextstu;
}
}
void SInfo::StuQuit() //学生信息写入文件
{
char choice;
cout << "是否保存学生信息:?(Y/N)";
cin >> choice;
if (choice == 'y' || choice == 'Y')
{
StuSave();
cout << "学生信息已保存..." << endl;
}
}
2.源程序
#include<iostream>
#include "SInfo.h"
#include<cstdlib>
using namespace std;
int main()
{
Systemdoor();
int x = 100, pnum,pmath,peng,pyuwen;
StuNode *pfind;
SInfo stu;
cout <<" ******************************************" << endl;
cout <<" ******************************************" << endl;
cout <<" ****** ******" << endl;
cout <<" ****** 欢迎进入学生信息管理系统 ******" << endl;
cout <<" ****** ******" << endl;
cout <<" ******************************************" << endl;
cout <<" ******************************************" << endl;
while (x != 0)
{
system("pause");
system("cls"); //清屏
ShowMenu();
cin >> x;
switch (x)
{
case 0:
stu.StuQuit();
break;
case 1:
stu.StuRead();
cout << "读入学生信息表:" << endl;
stu.ShowInfo();
break;
case 2:
stu.CreatSinfo();
cout << "请核对输入学生信息!" << endl;
stu.ShowInfo();
break;
case 3:
cout << "请输入添加学生信息:";
cin >> pnum >> pmath >> peng >> pyuwen;
stu.StuInsert(pnum, pmath, peng, pyuwen);
cout << "更新学生信息表..." << endl;
stu.ShowInfo();
break;
case 4:
cout << "请输入要删除学生学号:";
cin >> pnum;
stu.StuDelete(pnum);
cout << "更新学生信息表..." << endl;
stu.ShowInfo();
break;
case 5:
cout << "请输入要查找学生学号:";
cin >> pnum;
pfind = stu.StuFind(pnum);
cout << "查找学生学号:" << pfind->num <<" 数学 "<<pfind->math<<" 英语 "<<pfind->eng<<" 语文 "<<pfind->yuwen <<" 总分 " << pfind->sum << endl;
break;
case 6:
cout << "请输入要修改学生学号:";
cin >> pnum;
cout << "请重新输入学生分数:";
cin >> pmath >> peng >> pyuwen;
stu.StuModify(pnum, pmath, peng, pyuwen);
cout << "修改成功!" << endl;
cout << "更新学生信息表..." << endl;
stu.ShowInfo();
break;
case 7:
cout << "升序排序(1)降序排序(0)学号排序(10):";
cin >> pnum;
if (pnum == 1)
{
stu.StuSort('<');
stu.ShowInfo();
}
else if (pnum == 0)
{
stu.StuSort('>');
stu.ShowInfo();
}
else if (pnum == 10)
{
stu.StuSort('o');
stu.ShowInfo();
}
else
{
cout << "请输入正确选择!" << endl;
}
break;
case 8:
stu.StuClassfy();
break;
case 9:
stu.ShowInfo();
break;
case 10:
stu.StuSave();
break;
}
}
system("pause");
return 0;
}