资源简介
简单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;
- 上一篇:电信计费系统C++
- 下一篇:学生成绩管理系统v1.0
相关资源
- C语言课程设计报告-图书管理系统.z
- booth算法C语言实现
- 电梯模拟C语言数据结构中国地质大学
- CVSD解码c语言代码
- 黑白棋游戏c语言代码
- 学生成绩管理系统v1.0
- STM32F3 LCD1602 I2C驱动代码 C语言
- 加速度积分求速度和位移的c语言算法
- 博弈树树的c实现
- 模糊控制算法的c语言实现
- 清华 严蔚敏 《数据结构(c语言版)
- 约瑟夫问题C语言实现
- C语言MP3播放器源代码
- 职工信息管理系统C语言版
- p2p的C语言编写,LINUX可执行程序+运行
- C++实现ATM机程序采用mysql连接
- 用回溯法、蛮力法解决01背包问题
- p2p技术C语言源码
- 6步学会VS2010环境下C语言DLL封装.pdf
- 汉诺塔的C语言可视化实现使用EasyX图
- 8255 键盘接口C语言编程
- 最短剩余时间优先算法SRTFC语言代码
- 决策树实现算法C语言编写
- C语言 小波变换 图像 去噪 源代码
- c语言 链表排序--
- C语言版贪吃蛇设计思路及源代码
- 动态分区分配方式模拟c语言
- 浙江大学C程题库
- 学生系统C语言成绩排名
- 背包问题C语言实现, 动态规划
评论
共有 条评论