C语言银行储蓄系统源码

本文为大家分享了C语言银行储蓄系统源码,实现银行的各项功能,供大家参考,具体内容如下

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
void openaccount();//开户
void save();//存款
void withdraw();//取款
void showAccount();//查询
void transferAccounts();//转账
void reportLoss(); //挂失
void cancelLoss(); //解除挂失
void cancelAccount(); //注销账户
void updatePassword();  //更改密码
int load();//登陆账号
int accountnum=0;//定义全局变量,用来计算账户数目
int nowaccount=0;//登录成功是的账户
struct Bank
{
  char account[20]; //账号
  char password[10]; //密码
  char name[20];  //用户名
  int balance;//账户余额
  int state;//状态
};  //结构体
struct Bank banks[100];
int load()
{
  int right=0,i=0,j;
  int r1,r2;
  char ch;
  char account1[20]= {0};
  char password1[10]= {0};
  printf("登陆\n请输入账号:\n");
  scanf("%s",account1);
  printf("请输入密码:\n");
  while((ch=getch())!='\r')
  {
    password1[i++]=ch;
    putchar('*');
  }
  for(j=0; j<accountnum; j++)
  {
    r1=strcmp(account1,banks[j].account);
    r2=strcmp(password1,banks[j].password);
    if(r1==0&&r2==0)
    {
      nowaccount=j;
      if(banks[j].state==0)
      {
        printf("登录成功!\n");//登录成功
        right=1;
      }
      else if(banks[j].state==1)
      {
        printf("您的账户处于挂失状态,请解挂\n");
        right=3;
      }
      else if(banks[j].state==2)
      {
        printf("账户已经销户\n");
        right=2;
      }
      break;
    }
  } 

  if(right==0)
    printf("登陆失败!\n");
  return right;
}
int main()
{
  int i=0,num;
  char a[100];
  FILE *fp;
  if((fp=fopen("account.txt","r"))==NULL)
  {
    if((fp=fopen("account.txt","w"))==NULL)
    {
      printf("失败!\n");
      exit(1);
    }
  }
  while(fscanf(fp,"%s%s%s%d%d",banks[i].account,banks[i].name,banks[i].password,&banks[i].balance,&banks[i].state)!=EOF)
  {
    accountnum++;
    i++;
  }
  fclose(fp);
  printf("欢迎来到我的银行\n");
  while(1)
  {
    printf("请选择业务:\n");
    printf("1.开户  2.存款  3.取款\n");
    printf("4.查询  5.转账  6.挂失\n");
    printf("7.解挂  8.销户  9.改密\n");
    printf("-1.退出\n");
    scanf("%s",a);
    num=atoi(a);
    if(num==1)
      openaccount();//开户
    else if(num==2)
      save();//存款
    else if(num==3)
      withdraw();//取款
    else if(num==4)
      showAccount();//查询
    else if(num==5)
      transferAccounts();//转账
    else if(num==6)
      reportLoss(); //挂失
    else if(num==7)
      cancelLoss(); //解挂
    else if(num==8)
      cancelAccount(); //注销账户
    else if(num==9)
      updatePassword();  //更改密码
    else if(num==-1)
    {
      printf("欢迎下次再来\n");
      break;
    } 

    else
      printf("抱歉,没有此业务\n");
  }
  if((fp=fopen("account.txt","w"))==NULL)
  {
    printf("失败!\n");
    exit(1);
  }
  for(i=0; i<accountnum; i++)
  {
    fprintf(fp,"%s\t%s\t%s\t%d\t%d\n",banks[i].account,banks[i].name,banks[i].password,banks[i].balance,banks[i].state);
  }
  fclose(fp);
  return 0;
}
void openaccount()
{ 

  int i=0,j=0;
  int r;
  char ch;
  char password1[10]= {0};
  printf("账户(十位数):\n");
  scanf("%s",banks[accountnum].account);
  while(banks[accountnum].account[i]!='\0')
    i++;
  if(i!=10)
  {
    printf("输入账号有误\n");
    return;
  }
  i=0;
  printf("姓名:\n");
  scanf("%s",banks[accountnum].name);
  printf("密码:\n");
  while((ch=getch())!='\r')
  {
    banks[accountnum].password[i++]=ch;
    putchar('*');
  }
  printf("\n");
  printf("再次输入密码:\n");
  while((ch=getch())!='\r')
  {
    password1[j++]=ch;
    putchar('*');
  }
  printf("\n");
  r=strcmp(banks[accountnum].password,password1);
  if(r!=0)
  { 

    printf("两次密码不相同,开户失败!\n");
    return;
  }
  banks[accountnum].balance=0;
  banks[accountnum].state=0;
  accountnum++;
  printf("开户成功\n");
}
void save()
{
  if(load()!=1)
    return;
  char addmoney[10];//存入金额
  int money;//将字符型转化为int型
  int i=0;
  printf("存入金额:\n");
  scanf("%s",addmoney);
  while(addmoney[i]!='\0')
  {
    if(addmoney[i]<'0'||addmoney[i]>'9')
    {
      printf("输入格式错误!\n");
      return;
    }
    i++;
  }
  while(addmoney[i]!='\0')
  {
    if(i>9)
    {
      printf("金额超限\n");
      return;
    }
    i++;
  }
  money=atoi(addmoney);
  if(money==0)
  {
    printf("存款失败\n");
    return;
  }
  else
  {
    banks[nowaccount].balance+=money;
    printf("存款成功\n");
  }
}
void withdraw()
{
  if(load()!=1)
    return;
  char reducemoney[10];//取款金额
  int money,i=0;
  printf("请输入取款金额\n");
  scanf("%s",reducemoney);
  while(reducemoney[i]!='\0')
  {
    if(reducemoney[i]<'0'||reducemoney[i]>'9')
    {
      printf("输入格式错误!\n");
      return;
    }
    i++;
  }
  while(reducemoney[i]!='\0')
  {
    if(i>9)
    {
      printf("金额超限\n");
      return;
    }
    i++;
  }
  money=atoi(reducemoney);
  if(money==0)
  {
    printf("取款失败\n");
    return;
  }
  else
  {
    if(money>banks[nowaccount].balance)
      printf("您的账户没有这么多余额,取款失败!\n");
    else
    {
      banks[nowaccount].balance-=money;
      printf("取款成功\n");
    }
  }
}
void showAccount()
{
  if(load()!=1&&load()!=2)
    return;
  printf("您的账户信息如下:\n");
  printf("账号:%s\t余额:%d\n",banks[nowaccount].account,banks[nowaccount].balance);
}
void transferAccounts()
{
  if(load()!=1)
    return;
  char account1[20];
  int i,judge=0,money,a;
  char tramoney[10];
  printf("请输入您转入的账户\n");
  scanf("%s",account1);
  for(i=0; i<accountnum; i++)
  {
    if(strcmp(account1,banks[i].account)==0)
    {
      a=i;
      judge=1;
      break;
    }
  }
  if(judge!=1)
   {
     printf("没有发现此账户\n");
     return;
   }
  printf("请输入转账金额\n");
  scanf("%s",tramoney);
  while(tramoney[i]!='\0')
  {
    if(tramoney[i]<'0'||tramoney[i]>'9')
    {
      printf("输入格式错误!\n");
      return;
    }
    i++;
  }
  while(tramoney[i]!='\0')
  {
    if(i>9)
    {
      printf("金额超限\n");
      return;
    }
    i++;
  }
  money=atoi(tramoney);
  if(money==0)
  {
    printf("转账失败\n");
    return;
  }
  else
  {
    if(money>banks[nowaccount].balance)
      printf("您的账户没有这么多余额,转账失败!\n");
    else
    {
      banks[nowaccount].balance-=money;
      banks[a].balance+=money;
      printf("转账成功\n");
    }
  } 

}
void reportLoss()
{
  if(load()!=1)
    return;
  banks[nowaccount].state=1;
  printf("挂失成功\n");
}
void cancelLoss()
{
  int judge=0;
  if(load()==3)
  {
    printf("立即解挂请按1,退出请按0\n");
    scanf("%d",&judge);
    if(judge==1)
    {
      banks[nowaccount].state=0;
      printf("解挂成功\n");
    } 

  }
  else if(load()==1)
    printf("账户正常\n");
}
void cancelAccount()
{
  int r;
  r=load();
  if(r==2)
  {
    printf("账户已经销户\n");
    return;
  }
  else if(r==3||r==0)
    return;
  else if(r==1)
  {
    printf("请将您的账户余额取完\n");
    banks[nowaccount].state=2;
    banks[nowaccount].balance=0;
    printf("注销成功\n");
  }
}
void updatePassword()
{
  char newpassword1[10]= {0},newpassword2[10]= {0};
  int i=0,j=0,r;
  char ch;
  if(load()!=1)
    return;
  printf("请输入新密码\n");
  while((ch=getch())!='\r')
  {
    newpassword1[i++]=ch;
    putchar('*');
  }
  printf("\n");
  printf("再次输入密码:\n");
  while((ch=getch())!='\r')
  {
    newpassword2[j++]=ch;
    putchar('*');
  }
  printf("\n");
  r=strcmp(newpassword1,newpassword2);
  printf("r:%d",r);
  if(r!=0)
  { 

    printf("两次密码不相同,改密失败!\n");
    return;
  }
  i=0;
  while(newpassword1[i]!='\0')
  {
    banks[nowaccount].password[i]=newpassword1[i];
    i++;
  }
  printf("改密成功\n");
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

您可能感兴趣的文章:

  • C语言实现学生信息管理系统(单链表)
  • C语言单链表版学生信息管理系统
  • 学生信息管理系统C语言版
  • C语言实现简单学生学籍管理系统
  • C语言学生学籍管理系统课程设计
  • C语言实现学生学籍管理系统
  • C语言实现图书管理系统
  • C语言实现歌曲信息管理系统
  • C语言职工信息管理系统源码
  • C语言银行系统课程设计
(0)

相关推荐

  • C语言银行系统课程设计

    本文为大家分享了C语言银行系统课程设计,供大家参考,具体内容如下 main.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> #include <windows.h> #define MaxNum 200 #define N_P 6 typedef struct { int AccountNumber[3]; char name[20];

  • C语言实现简单学生学籍管理系统

    本文实例为大家分享了C语言实现学生学籍管理系统的具体代码,供大家参考,具体内容如下 #include<stdio.h> #include<string.h> #include<stdlib.h> #include<conio.h> #define N 100 /*存储100个学生的学籍信息*/ int flag; /*标记是否登录*/ struct date /*出生日期*/ { int year; int month; int day; }; struct

  • 学生信息管理系统C语言版

    C语言学生信息管理系统包括以下功能: 1.学生信息的整体注册 2.学生信息的修改 3.学生成绩信息的录入 4.学生信息的添加 5.恢复误删的学生信息 6.学生信息的删除 7.密码修改保存函数 8.学生信息的查询 9.密码修改函数 10.学生信息管理系统的菜单函数 #include "stdio.h" #include "malloc.h" #include "string.h" #include "stdlib.h" #inc

  • C语言职工信息管理系统源码

    本文实例为大家分享了C语言职工信息管理系统的具体代码,供大家参考,具体内容如下 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> struct worker { char ID[20];//工号 char name[20];//姓名 char sex[5];//性别 char born[20];//生日 char edu[20];//学历 char po

  • C语言实现学生信息管理系统(单链表)

    本文实例为大家分享了C语言实现学生信息管理系统的具体代码,供大家参考,具体内容如下 /*copyright(c)2016.烟台大学计算机学院 * All rights reserved, * 文件名称:text.Cpp * 作者:吴敬超 * 完成日期:2016年7月1日 * 版本号:codeblock * * 问题描述: 学生信息管理系统 * 输入描述: * 程序输出: 输出结果 */ #include <stdio.h> #include <stdlib.h> #include

  • C语言单链表版学生信息管理系统

    本文实例为大家分享了C语言学生信息管理系统的具体代码,供大家参考,具体内容如下 代码: //以单链表作为存储结构,设计和实现课程成绩管理的完整程序. //程序包括如下功能. //1.建立学生成绩表,包含学生的学号.姓名和成绩. //2.可以显示所有学生成绩. //3.可以计算学生的总数. //4.可以按学号和序号查找学生. //5.可以在指定位置插入学生成绩数据. //6.可以删除指定位置的学生数据. //7.可以把学生成绩按从高到低的顺序排序. //作者: yinlinqvan //操作系统:

  • C语言实现歌曲信息管理系统

    本文实例为大家分享了C语言实现歌曲信息管理系统的具体代码,供大家参考,具体内容如下 系统功能:该系统以菜单方式工作,歌曲信息包括:歌名.演唱者.作词.作曲.所属专辑.出版时间.出版公司.试设计一歌厅歌曲管理系统,使之能提供以下功能:歌曲信息录入.修改.插入.删除功能:歌曲排序浏览功能:按歌名查询.按演唱者查询等功能. 完整的实现代码如下: #include "stdio.h" #include "stdlib.h" #include "string.h&q

  • C语言实现学生学籍管理系统

    本文实例为大家分享了C语言实现学生学籍管理系统的具体代码,供大家参考,具体内容如下 #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> #include<windows.h> //**********************************结构体************************************* struct score

  • C语言学生学籍管理系统课程设计

    C语言学生学籍管理系统做了好长时间的,里面有点小问题,希望大佬找到并帮忙改改,注意输入密码三次错误会自动注销用户,密码123456 代码: #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> struct student { char xuehao[100];//输入学号 char name[100];//输入姓名 char sex[100];//输入性别 int

  • C语言银行储蓄系统源码

    本文为大家分享了C语言银行储蓄系统源码,实现银行的各项功能,供大家参考,具体内容如下 #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string.h> void openaccount();//开户 void save();//存款 void withdraw();//取款 void showAccount();//查询 void transferAccounts();

  • C语言商品销售系统源码分享

    本文实例为大家分享了C语言商品销售系统的具体代码,供大家参考,具体内容如下 #include<stdio.h> //头文件 #include<string.h> //头文件 #include<stdlib.h> //头文件 #define M 100 //货物种类 #define N 100 //顾客数目 struct goods //单个货物信息格式 { int number; //产品编号 char name[20]; //产品名称 int price1; //进价

  • C语言图书借阅系统源码

    本文实例为大家分享了C语言图书借阅系统的具体代码,供大家参考,具体内容如下 #include "stdafx.h" #include"stdio.h" #include"conio.h" #include"string.h" #include"stdlib.h" int N; char mima[20]="mm"; /**********定义图书结构体类型book*******/ str

  • PHP+Mysql无刷新问答评论系统(源码)

    自己写的一个评论系统源码分享给大家,包括有表情,还有评论机制.用户名是随机的 针对某一篇文章进行评论 function subcomment() { $data['uid'] = getUserid(); $data['mtype'] = I("post.mtype", 0, 'int'); if ($data['uid'] == '') { echo json_encode(array("code" => -1)); } else { $content =

  • Java Swing实现餐厅点餐系统源码(收藏版)

    本文适合Java初级选手,主要技术是Java和MySQL.主要功能如下: (1)注册功能 (2)管理员可以新增套餐 (3)管理员可以管理套餐 (4)管理员可以处理订单 (5)管理员可以修改密码 (6)顾客可以点餐 (7)顾客可以查看订单信息 (8)顾客可以修改个人信息 下面是项目目录 源码有点多,不太好贴,如果需要源码,可以关注公众号[Java技术迷]回复[2021]编号03即是该系统的源码. 即可获取整套源码,也可以直接扫码关注 下面是系统运行图 如果需要源码,可以关注公众号回复[2021]即

  • nodejs模块系统源码分析

    概述 Node.js的出现使得前端工程师可以跨端工作在服务器上,当然,一个新的运行环境的诞生亦会带来新的模块.功能.抑或是思想上的革新,本文将带领读者领略 Node.js(以下简称 Node) 的模块设计思想以及剖析部分核心源码实现. CommonJS 规范 Node 最初遵循 CommonJS 规范来实现自己的模块系统,同时做了一部分区别于规范的定制.CommonJS 规范是为了解决JavaScript的作用域问题而定义的模块形式,它可以使每个模块在它自身的命名空间中执行. 该规范强调模块必须

  • 关于androidstuio导入系统源码的问题

    最近公司需要做一些将系统源码导出来,然后加入一些功能,在导入androidstudio过程中遇到过一些问题,这里记录下,方便以后需要. 一般导入成功的都是系统比较相对独立的app,比如计算器.Schedule power on off等,网上查阅一些资料后,最终解决. 这里以Schedule power on off为例. 1.导出Schedule power on off源码,路径为/package/apps/ 如图: 新建androidstudio项目,导入相关代码以及相关资源文件,rebu

  • Go语言编译原理之源码调试

    目录 前言 Goland的debug调试Go源码 dlv工具调试Go源码 安装 常用命令 dlv调试抽象语法树构建 前言 在前边几篇文章中分享了Go编译过程中的源码实现,本文主要是想分享一下我是怎么调试Go的源代码的(如果你很熟悉的话,可以跳过本文).本文主要是分享两种Go源码的调试方法 Goland的debug dlv工具 本文我还会以抽象语法树为例,来通过dlv对它的构建过程进行调试 Goland的debug调试Go源码 下边以调试Go编译的入口文件为例 编辑debug配置 填写配置信息 打

  • 易语言制作DNF解封源码

    DNF解封源码 需要加载精易模块7.0 .版本 2 .支持库 HtmlView .支持库 spec .程序集 窗口程序集__启动窗口 .程序集变量 Cookie, 文本型 .程序集变量 浏览器组地址, 文本型 .子程序 __启动窗口_创建完毕 .局部变量 ADD_数据包, 类_POST数据类 .局部变量 方式, 整数型 .局部变量 局_结果, 字节集 .局部变量 局_返回, 文本型 .局部变量 局_提交数据, 文本型 方式 = 1 浏览器组地址 = "https://act.gamesafe.q

随机推荐