📄 user.h
字号:
#ifndef H_USER_H_AAABBBCCC
#define H_USER_H_AAABBBCCC
#include<iostream>
#include<list>
#include<sstream>
#include<string>
#include<stdlib.h>
#include<fstream>
#include<iomanip>
#include<conio.h>
#include <stdio.h>
#include "time.h"
using namespace std;
///////////////////////////////
struct User//银行用户
{
string account;//银行账户
string cipher;//银行密码
string name;//用户姓名
string time;//开户时间
double remainingmoney;//余额
double depositmoney;//存钱数目
bool tobedeleted;//删除标志
bool tobefreezed;//冻结标志
bool tobedopsited;//存钱标志
bool activation;//激活标志
};
///////////////////////////////
struct Manager//银行管理员
{
string account;//管理员账户
string cipher;//管理元密码
double interest;//管理员设置的利率
double interest_tax;//管理员设置的利息税
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -