#include"stdio
h"#include"string
h"#include"stdlib
h"#include"conio
h"#include"time
h"#define N 20#define M 20#define TRUE 1 #define FALSE 0 #define MIN_INPUT ' ' #define MAX_INPUT 127 //127 即 0x7estruct jilu{float add; //存款金额 float dra; //取款金额 char dname[20]; //辨认账号 char dnum[20];//辨认姓名 char ope[20];//经办人姓名 char time[128]; //系统当前时间 float sy; //剩余金额};struct depositor{char num[20]; //客户账号 char name[20]; //客户姓名 char per[20]; //用户身份证号 char sec[20]; //用户密码 float mon; //存款金额 char addr[20]; //储户地址};void menu();int GetPassword(unsigned char* pszPw,int iMaxSize);//使输入的密码显示为*int reads(struct depositor dep[N]);//从文献中读入客户信息int readsc(struct jilu jl[M]); //从文献读入存款记录int readsd(struct jilu jl[M]); //从文献读入取款记录void save(struct depositor dep[N],int n); //保存修改后的客户信息数据void add(); //开户函数void del();