• 大小: 3KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-05-11
  • 语言: C/C++
  • 标签: c语言  atm机  

资源简介

简单atm机操作系统,ATM机用户操作界面及业务逻辑编写

资源截图

代码片段和文件信息

 #include“stdio.h“
#include“stdlib.h“
#include“conio.h“
void mainmenu()
{  printf(“==================\n“);
   printf(“|   1.中文       |\n“);
   printf(“|   2.English    |\n“);
   printf(“|   3.退出\\Exit  |\n“);
   printf(“==================\n“);
}
void chinesemenu()
{  printf(“==================\n“);
   printf(“|   1.查询       |\n“);
   printf(“|   2.存钱       |\n“);
   printf(“|   3.取钱       |\n“);
   printf(“|   4.退出       |\n“);
   printf(“==================\n“);
}
void Englishmenu()
{  printf(“==================\n“);
   printf(“|   1.Query      |\n“);
   printf(“|   2.Deposit    |\n“);
   printf(“|   3.Withdraw   |\n“);
   printf(“|   4.Exit       |\n“);
   printf(“==================\n“);
}
void Query(float *s)
{  
   printf(“此账户有 ¥ %f 元\n按任意键继续\n“*s);
}
void QueryE(float *s)
{
   printf(“This account has ¥ %f yuan\npress any key to try agin\n“*s);
}
void Deposit(float *s)
{float m;
 printf(“请输入要存的数目:¥“);
 scanf(“%f“&m);
 *s=*s+m;
}
void  WithDraw(float *n)
{float m;
 printf(“请输入要取的数目:¥“);
 scanf(“%f“&m);
    if(m>*n)
  printf(“余额不足,重新输入\n“);
    else   
  *n=*n-m;
}

void DepositE(float *money)
{float m;
 printf(“Please input the number you want to deposit:¥“);
 scanf(“%f“&m);
 *money=*money+m;
}
void  WithDrawE(float *money)
{float m;
 printf(“Please input the number you want to withdrawing:¥“);
 scanf(“%f“&m);
 if(m>*money)
 printf(“The rest of money is not enough!\nPress any key to continue.“);
 else
  *money=*money-m;
}
void main()
{ float money=1000.00*n;
   

评论

共有 条评论