user.h
来自「呵呵 就是大学二年级的我的课程设计啦」· C头文件 代码 · 共 38 行
H
38 行
#ifndef H_USER_H_AAABBBCCC
#define H_USER_H_AAABBBCCC
#include<iostream>
#include<list>
#include<string>
#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 + =
减小字号Ctrl + -
显示快捷键?