zoukankan      html  css  js  c++  java
  • ATM管理系统

    个人作业三-ATM管理系统

    个人作业三-ATM管理系统

    作业信息

    班级软件工程
    作业要求 要求
    学号 3180701224

    题目要求

    编写一个ATM管理系统,语言不限,要求应包括以下主要功能:

    (1)开户,销户

    (2)查询账户余额

    (3)存款

    (4)取款

    (5)转账(一个账户转到另一个账户)等...

    程序代码

    定义结构体和函数

    struct per           //定义结构体
    {
    	char name[20];
    		char ID[20];
    		int money;
    		char mima[6];
    		struct per * next;
    };
    typedef struct person    //定义另一结构体
    {
    	struct per kehu;
    	struct person *next;
    }L;
     
    void chaxun(struct per *head);    //各个函数的声明
    void kaihu(struct per *head);
    void denglu(struct per *head);
    void caidan(struct per *head);
    void qukuan(struct per *head);
    void xgmm(struct per *head);
    void cunkuan(struct per *head);
    void zhuanzhang(struct per *head);
    void chuangjian(struct person **Phead);
    void shuchu(struct person *Phead);
    void shanchu(struct person **Phead);
    void zengjia(struct person **Phead);
    void chaxun1(struct person *Phead);
    void chaxun2(struct person *Phead);
    void chaxun3(struct person *Phead);
    void tuichu();
    void menu();
    

    开户函数

    void kaihu(struct per *head)
    {
    	head=NULL;
    	FILE *fp;   //定义文件指针
    	struct per *p1=NULL,*p2=NULL;   //p1,p2为定义链表指针
    	p1=(struct per*)malloc(sizeof(struct per));  //开辟内存单元
    	      printf("请输入您的姓名:
    ");  //请数据输入链表中
    		  scanf("%s",p1->name);
    		  printf("请设置您的卡号:
    ");
    		  scanf("%s",p1->ID);
    		  printf("请设置您银行卡密码:
    ");
    		  scanf("%s",p1->mima);
    		  p1->money=0;
    		  p1->next=NULL;
    		  printf("您的个人信息为");
    		     printf("姓名:%s 
    卡号:%s 
    余额:%4d
    ",p1->name,p1->ID,p1->money);
              if(NULL==head)           //为新用户开辟内存单元
    		  {
    			  head=(struct per *)malloc(sizeof(struct per));
    			  head->next=p1;    //进行头插法,将其作为第一个节点
    		  }
    		  else    //为新增客户开辟内存单元
    		  {
    			  for(p2=head;p2->next!=NULL;p2=p2->next); //进行尾插
    			  p2->next=p1;
    		  }
    		  if((fp=fopen("save.txt","ab+"))==NULL) //打开文件
    		  {
    			  printf("cannot poen file
    ");
    			  return;
    		  }
    		  if(fwrite(p1,sizeof(struct per),1,fp)!=1)  //将链表信息写入文件中
    			  printf("file write error
    ");
    		      fclose(fp);
    			  printf("
    ");
    			  printf("恭喜您开户成功,请登录
    ");
    			  system("pause");
    			  system("cls");
    			  denglu(head);
    }
    

    登录函数

    void denglu(struct per *head)
    {
    	char d[20];
    	char mima[20];
    	int i,j;
    	FILE *fp;     //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL)   //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");   //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));   //申请空间
    	head=p;
    	while(!feof(fp))       //循环读数据直到文件尾结束
     
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;   //如果没读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;  //保存当前节点的指针,作为下一结点的前驱
    		p=p->next;  //指针后移,新读入数据链到当前表尾
    		
    	}
    	q->next=NULL;  //最后一个结点的后继指针为空
    	fclose(fp);
    	printf("  **********************
    ");
    	printf("  ***欢迎来都建设银行***
    ");
    	printf("  **********************
    ");
    	for(j=1;j<4;j++)      //限制卡号输入的次数的循环
    	{
    		printf("请输入您的卡号
    ");
    		scanf("%s",d);
    		for(q=head;q!=NULL;q=q->next)   //遍历链表
    		{
    			if(strcmp(q->ID,d)!=0)  //核对账号
    			{
    			continue;   //跳出循环
    			}
    					else
    		{
    			for(i=1;i<4;i++)   //限制密码输入的次数的循环
    			{
    				printf("
    
    请输入您的密码
    ");
    				scanf("%s",mima);
    				if(strcmp(q->mima,mima)!=0)      //核对密码
    				{
    					printf("密码不正确。请重新输入密码
    ");
    					system("pause");
    					system("cls");
    					continue;    //若密码不对,跳出循环
    				}
    				else
    				{
    					system("cls");
    					caidan(head);   //调用菜单函数
    				}
    			}
    			printf("
    
    
    您输入密码三次错误,谢谢光临
    ");
    			system("pause");
    			system("cls");
    			exit(0);
    		}
    	}
    		
    	
    	printf("
    
    
    您输入的卡号有误,请重试
    ");
    	system("pause");
    	system("cls");
    }
    printf("您的卡号三次输入错误,谢谢使用
    ");
    exit(0);
    }
    

    取款与转账

    void qukuan(struct per *head)
    {
    	head=NULL;   //head为链表头指针
    	int i;
    	FILE *fp;          //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL) //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");  //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));  //申请空间
    	head=p;
    	while(!feof(fp))   //循环读数据直到文件尾结束
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;   //如果没有读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;   //保存当前结点的指针,作为下一个结点的前驱
    		p=p->next;  //指针后移,新读入数据链到当前表尾
    	}
    	q->next=NULL;  //最后一个结点的后继指针为空
    	fclose(fp);
    	system("cls");
    	printf("************************************
    ");
        printf("**  1: 100元    *****    2:200元  **
    ");
    	printf("************************************
    ");
        printf("**  3: 300元    *****    4:400元  **
    ");
    	printf("************************************
    ");
        printf("**  5: 500元    *****    6:600元  **
    ");
    	printf("************************************
    ");
        printf("请按要求选择您要取款的金额
    ");
    	scanf("%d",&i);
    	if(i>6||i<=0)    //限制输入范围
    	{
    		printf("对不起,您的输入有误
    
    ");
    		return;
    	}
    	else
    	{
    		i=100*i;  //对应选项乘以一百为取款金额
    		if(i>q->money)
    		{
    			printf("对不起,您的金额不足
    ");
    			system("pause");
    			system("cls");
    			caidan(head);   //调用取款机菜单函数
    		}
    		else
    		{
    			q->money-=i;  //对金额进行处理
    			if((fp=fopen("save.txt","wb+"))==NULL)  //打开文件
    			{
    				printf("cannot open file
    ");
    				return;
    			}
    			if(fwrite(q,sizeof(struct per),1,fp)!=1) //将修改的信息重新写入文件
    				printf("file write error
    ");
    			printf("您已经成功取走%d元
    ",i);
    			q->next=NULL;
    			fclose(fp);    //关闭文件
    		}
    		
    	}
    }
     
     
    //银行转账函数
    void zhuanzhang(struct per *head)
    {
    	head=NULL;
    	FILE *fp;  //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL)  //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");  //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));   //申请空间
    	head=p;
    	while(!feof(fp))    //循环读数据直到文件尾结束
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;    //如果没读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;   //保存当前结点的指针,作为下一个结点的前驱
    		p=p->next;   //指针后移,新读入数据链到当前表尾
    	}
    	q->next=NULL;   //最后一个结点的后继指针为空
    	fclose(fp);
    	int i,j,k;
    	printf("请输入帐号号码
    ");
    	scanf("%d",&i);
    	printf("请再次输入帐号号码
    ");   //核对卡号
    	scanf("%d",&j);
    	if(i!=j)
    	{
    		printf("两次账号不同,请重新输入
    ");
    		zhuanzhang(head);
    	}
    	else
    	{
    		system("cls");
    	printf("************************************
    ");
        printf("**  1: 100元    *****    2:200元  **
    ");
    	printf("************************************
    ");
        printf("**  3: 300元    *****    4:400元  **
    ");
    	printf("************************************
    ");
        printf("**  5: 500元    *****    6:600元  **
    ");
    	printf("************************************
    ");
        printf("请输入转账金额
    ");
    	scanf("%d",&k);
    	if(k>6||k<=0)
    	{
    		printf("对不起,您的输入有误
    
    ");
    		return;
    	}
    	else
    	{
    		k=k*100;
    		if(k>q->money)    //对余额进行判断
    		{
    			printf("对不起,您的余额不足
    ");
    			system("pause");
    			system("cls");
    			caidan(head);
    		}
    		else
    		{
    			printf("您已成功转账%d元
    ",k);
    			q->money-=k;
    			if((fp=fopen("save.txt","wb+"))==NULL)
    			{
    				printf("cannot open file
    ");
    				return;
    			}
    			if(fwrite(q,sizeof(per),1,fp)!=1)  //将数据重新写入文件
    				printf("file write error
    ");
    			q->next=NULL;
    			fclose(fp);
    			system("pause");
    			system("cls");
    		}
    	}
    	}
    }
     
    

    查询函数

    void chaxun(struct per *head)
    {
    	head=NULL;  //链表头指针
    	FILE *fp;  //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL)  //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");  //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));   //申请空间
    	head=p;
    	while(!feof(fp))    //循环读数据直到文件尾结束
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;    //如果没读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;   //保存当前结点的指针,作为下一个结点的前驱
    		p=p->next;   //指针后移,新读入数据链到当前表尾
    	}
    	q->next=NULL;   //最后一个结点的后继指针为空
    	fclose(fp);
    	printf("您卡上原有余额%d元
    
    ",q->money);
    	system("pause");
    	system("cls");
    }
    

    修改密码

    void xgmm(struct per *head)
    {
    	head=NULL;          //链表头指针
    	char mima[20];
    	FILE *fp;  //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL)  //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");  //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));   //申请空间
    	head=p;
    	while(!feof(fp))    //循环读数据直到文件尾结束
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;    //如果没读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;   //保存当前结点的指针,作为下一个结点的前驱
    		p=p->next;   //指针后移,新读入数据链到当前表尾
    	}
    	q->next=NULL;   //最后一个结点的后继指针为空
    	fclose(fp);
    	printf("请输入您的原密码
    ");
    	scanf("%s",mima);
    	if(strcmp(q->mima,mima)==0)   //核对密码
    	{
    		{
    			printf("密码正确
    ");
    			printf("请输入您的新密码:
    ");
    			scanf("%s",q->mima);
    			if((fp=fopen("save.txt","wb+"))==NULL)  //文件头指针
    			{
    				printf("cannot open file
    ");
    			}
    			if(fwrite(q,sizeof(struct per),1,fp)!=1)    //将修改的密码重新写入文件
    				printf("file write error
    ");
    			fclose(fp);
    			printf("修改密码成功
    
    
    
    
    ");
    		}
    	}
    	else
    	{
    		printf("您输入的密码与原密码不同
    ");
    		return;
    		system("pause");
    	}
    	q->next=NULL;
    }
     
    

    存款函数

    void cunkuan(struct per *head)
    {
    	int i;
    	head=NULL;   //链表头指针
    	FILE *fp;  //定义文件指针
    	struct per *p,*q=NULL;
    	if((fp=fopen("save.txt","rb+"))==NULL)  //打开一个二进制文件,为读方式
    	{
    		printf("不能打开文件
    ");  //如不能打开,则结束程序
    	}
    	p=(struct per*)malloc(sizeof(struct per));   //申请空间
    	head=p;
    	while(!feof(fp))    //循环读数据直到文件尾结束
    	{
    		if(1!=fread(p,sizeof(struct per),1,fp))
    			break;    //如果没读到数据,跳出循环
    		p->next=(struct per *)malloc(sizeof(struct per));  //为下一个结点申请空间
    		q=p;   //保存当前结点的指针,作为下一个结点的前驱
    		p=p->next;   //指针后移,新读入数据链到当前表尾
    	}
    	q->next=NULL;   //最后一个结点的后继指针为空
    	fclose(fp);
    	system("cls");
    	printf("您卡上原有余额%d元
    ",q->money);   
    	printf("************************************
    ");
        printf("**  1: 100元    *****    2:200元  **
    ");
    	printf("************************************
    ");
        printf("**  3: 300元    *****    4:400元  **
    ");
    	printf("************************************
    ");
        printf("**  5: 500元    *****    6:600元  **
    ");
    	printf("************************************
    ");
        printf("请选择您要存入的余额
    ");
    	scanf("%d",&i);
    	if(i>6||i<=0)
    	{
    		printf("对不起,您的输入有误
    
    ");
    		return;
    	}
    	else
    	{
    		i=100*i;
    		q->money+=i;
    		if((fp=fopen("save.txt","wb+"))==NULL)   //打开文件
    		{
    			printf("cannot open file
    ");
    		}
    		if(fwrite(q,sizeof(struct per),1,fp)!=1)  //将修改的密码重新写入文件
    			printf("file write error
    ");
    	    	printf("您已经成功存取%d元
    ",i);
    			q->next=NULL;
    			fclose(fp);
    			system("pause");
    			system("cls");
    	}
    }
    

    修改用户信息

    void chaxun1(struct person*Phead)
    {
    	char m[20];   //定义输入查找客户卡号的变量
    	if(NULL==Phead)   //若头指针向空,则没有客户信息
    	{
    	printf("没有客户信息可查询!
    ");
    	return;
    	}
    	printf("请输入要查询的客户卡号:
    ");  
    	scanf("%s",m);
    	while(NULL!=Phead&&strcmp(Phead->kehu.ID,m)!=0)  //在链表中遍历寻找中,直到链表存在并且卡号核对无误
    		Phead=Phead->next;
    	if(Phead==NULL)  //若指针指最后指向空,则没有客户信息
    		printf("对不起,没有该用户!
    ");
    	else
    		printf("卡号:%s
    姓名:
    余额:%d
    ",Phead->kehu.ID,Phead->kehu.name,Phead->kehu.money);
     
    }    //若找到,则输出客户信息
     
     
     
    //后台运行姓名查询函数
    
     
     
     
    void chaxun2(struct person *Phead)
    {
    	char m[20];   //定义输入查找客户卡号的变量
    	if(NULL==Phead)   //若头指针向空,则没有客户信息
    	{
    	printf("没有客户信息可查询!
    ");
    	return;
    	}
    		printf("请输入要查询的客户姓名:
    ");  
    		scanf("%s",m);
    	while(NULL!=Phead&&strcmp(Phead->kehu.name,m)!=0)  //在链表中遍历寻找中,直到链表存在并且姓名核对无误
    	Phead=Phead->next;
    	if(Phead==NULL)  //若指针指最后指向空,则没有客户信息
    		printf("对不起,没有该用户!
    ");
    	else
    		printf("卡号:%s
    姓名:
    余额:%d
    ",Phead->kehu.ID,Phead->kehu.name,Phead->kehu.money);
     
    }    //若找到,则输出客户信息
     
     
    //后台运行余额查询函数
    
     
    void chaxun3(struct person *Phead)
    {
    	long x;   //定义输入查找客户余额的变量
    	if(NULL==Phead)   //若头指针向空,则没有客户信息
    	{
    	printf("没有客户信息可查询!
    ");
    	return;
    	}
    		printf("请输入要查询的客户信息的余额:
    ");  
    		scanf("%ld",&x);
    	while(NULL!=Phead&&Phead->kehu.money!=x)  //在链表中遍历寻找中,直到链表存在并且余额核对无误,继续寻找
    		Phead=Phead->next;
    	if(Phead==NULL)  //若指针指最后指向空,则没有客户信息
    		printf("对不起,没有该用户!
    ");
    	else
    		printf("该客户的信息为
    ");
    		printf("卡号:%s
    姓名:
    余额:%d
    ",Phead->kehu.ID,Phead->kehu.name,Phead->kehu.money);
     
    }    //若找到,则输出客户信息
     
     
    //后台运行删除客户信息函数
    ///
    void shanchu(struct person **Phead)   //*(*Phead)为指向结构体指针的地址
    {
    	char k[20];    //定义输入查找客户姓名卡号的变量
    	struct person *p=*Phead,*t;
    	if(NULL==(*Phead))     //若指针最后指向空,则没有客户信息
    	{
    		printf("没有客户信息可删除!
    ");
    		return;
    	}
    	printf("请输入要删除的客户卡号:
    ");
    	scanf("%s",k);
    	if(p->kehu.ID==k)  //若第一个客户就是,则让头指针指向下一个结点
    		*Phead=(*Phead)->next,free(p);
    	else
    	{
    		while(NULL==p->next&&p->next->kehu.ID!=k)   //遍历寻找,核对客户卡号
    			p=p->next;   //当p->next没指向空,并且客户的卡号还没找到,则继续寻找
    		if(p->next==NULL)
    			printf("对不起,没有该客户!
    ");
    		else
    		{
    			t=p->next;  //如果找到,则把p->next的值赋给t
    			p->next=p->next->next;
    		}
    	}
    }
     
    //后台运行增加用户信息函数
     
    void zengjia(struct person **Phead)  //*(*Phead) 为指向结构体指针的地址
    {
    	char n[20];   //定义输入增加客户卡号的变量
    	char a[20];   //定义输入增加客户姓名的变量
    	int s;
    	L *p,*t,*k;   //定义操作指针变量
    	printf("请输入要插入的客户信息
    ");
            printf("请输入卡号
    ");  //尾插法
         	scanf("%s",&n);
    	    printf("请输入姓名
    ");
        	scanf("%s",a);
    	    printf("请输入预存金额
    ");
        	scanf("%d",&s);
    		p=(L *)malloc(sizeof(L));    //开辟空间
    		strcpy(p->kehu.ID,a);   //将新的客户信息写入链表
    		p->kehu.money=s;
    		strcpy(p->kehu.name,n);
    		if(NULL==(*Phead))   //如果是空链表,则把新客户信息作为第一个结点
    		{
    			*Phead=p;   //头插法
    			(*Phead)->next=NULL;
    			return ;
    		}
    		else
    		{
    			p->next=(*Phead);   //头插法
    			(*Phead)=p;
    		}
    }
    

    主函数

    int main()
    {
    	char x;
    	char choose; //choose为定义输入选择的变量
    	int flag=1;
    	struct person *Phead=NULL; //Phead为定义二层头指针
    	struct per *head=NULL;    //head为定义一层头指针
    	printf("*****************************
    ");
    	printf("**欢迎使用ATM自动取款机系统**
    ");
    	printf("*****************************
    ");
        printf("——————————————
    ");
    	printf("|    1  开户                |
    ");
        printf("——————————————
    ");
    	printf("|    2  登陆                |
    ");
        printf("——————————————
    ");
    	printf("|    3  前台客户信息查询中心|
    ");
        printf("——————————————
    ");
    	printf("|    4  请选择您的需求      |
    ");
        printf("——————————————
    ");
    	scanf("%s",&x);
    	system("cls");
     
    	switch(x)
    	{
    	case '1':system("cls");
    	         kaihu(head);   //调用开户函数
    			 break;
     
    	case '2':system("cls");
    	         denglu(head);   //调用登陆函数
    			 break;
     
    	case '3':system("cls");
    	         menu();   //调用后台菜单函数
    			 break;
    	}
    	while(flag)
    	{
    		system("cls");
    		menu();       //调用后台菜单函数
    		choose=getchar();
    		switch(choose)
    		{
    		case '1':chuangjian(&Phead);
    			     shuchu(Phead); //调用后台输出函数
    				 system("pause");
    				 system("cls");
    				 break;
        	case '2':chaxun1(Phead); //调用后台卡号查询函数
    				 system("pause");
    				 system("cls");
    				 break;
        	case '3':chaxun2(Phead); //调用后台姓名查询函数
    				 system("pause");
    				 system("cls");
    				 break;
        	case '4':
    			     chaxun3(Phead); //调用后台余额查询函数
    				 system("pause");
    				 system("cls");
    				 break;
        	case '5':shanchu(&Phead); //调用后台删除用户函数
    				 system("pause");
    				 system("cls");
    				 break;
    	    case '6':
    			     zengjia(&Phead); //调用后台增加用户函数
    				 system("pause");
    				 system("cls");
    				 break;
    	    case '7':shuchu(Phead); //调用后台输出函数函数
    				 system("pause");
    				 system("cls");
    				 break;
    	    case '8':shuchu(Phead); 
    				 system("pause");
    				 system("cls");
    				 break;
        	case '0':flag=0;
    			     printf("The end.
    ");
    				 break;
    		}
    	}
    	return 0;
    }
    

    运行结果截图
    主界面

    开户

    登录

    存款

    取款

    查询

    转账

    修改密码

    个人小结

    功能不够完备,后参考其他代码加以改进,还需要多加练习,进行客户的需求分析。

    psp2.1任务内容计划完成的时间(min)实际完成时间(min)
    Planning 计划 15 30
    Estimate 估计这个任务需要多少时间,并规划大致工作步骤 40 60
    Development 开发 200 250
    Analysis 需求分析(包括学习新技术) 15 6
    Design Spec 生成设计文档 5 5
    Design Review 设计复审 5 5
    Coding Standard 代码规范 5 2
    Design 具体设计 15 20
    Coding 具体编码 30 40
    Coding Review 代码复审 10 12
    Test 测试(自我测试,修改代码,提交修改) 10 15
    Reporting 报告 10 5
    Test Report 测试报告 5 5
    Size Measurement 计算工作量 2 1
    Postmortem & Process Improvement Plan 事后总结,并提出过程改进计划 5 5
  • 相关阅读:
    scoket --- 练习
    网络编程---scoket使用,七层协议,三次挥手建连接,四次挥手断连接
    类的总复习
    面向对象 --- 类的绑定方法,面向对象高阶
    组合,访问限制机制,抽象类 --- 练习
    面向对象 --- 类的组合,封装,多态
    类的继承 --- 练习
    面向对象 --- 类的继承
    基于面向对象设计一个游戏
    请求头类型content-type
  • 原文地址:https://www.cnblogs.com/p-x-y/p/14002186.html
Copyright © 2011-2022 走看看