VC++6.0
实现的代码
由于数据库暂时没学会,利用了文本文件进行保存
修改
用户数据
#include "iostream"
#include"string"
#include"fstream"
#include"iomanip"
using namespace std;
int count1=0,count11=0;
//
学生总数和交钱的人数
int count2=0,count22=0;
class Stu
{
public:
Stu(double xwater=0,double xpower=0,double xgas=0,string xnum="a",string xna="a");
//
学生类构造函数
void
operator
=(Stu S);
//
赋值运算符重载
friend
ostream &operator <
//
插入运算符重载
{
a<
a<
输出时左对齐
8
位
a<
a<
a<
a<
a<
a<
a<
if(S.flag!=0)
a<
已交
";
else a<
未交
";
cout<
return a;
}
double SGetW();
//
计算水费
double SGetC();
//
计算电费
double SGetG();
//
计算煤气费
double Stotal(); //
计算总费用
double water,power,gas,water_rate,circuit,gas_rate,total;
int flag;
string number,name;
};
Stu::Stu(double xwater,double xpower,double xgas,string xnum,string xna)
//
学生类构造函数