欢迎来到天天文库
浏览记录
ID:37913363
大小:40.00 KB
页数:5页
时间:2019-06-02
《ATM银行取款系统程序代码初步》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、packageatm;importjava.io.*;publicclassperfect{publicstaticvoidmain(String[]args)throwsIOException{System.out.println("ATM自动取款机欢迎你的光临!");System.out.println("请输入您的密码:");intmoney=10000;intcount=0;while(count<3){if(login1()){System.out.println("欢迎光临本ATM自动取款机为你提供如下服务:"+"1、余额查询t2、取款t3、存款t4、转帐t5、
2、取卡");job(money);}else{System.out.print("对不起,你输入的密码有误!");count++;if(count==1){System.out.println("你已输错密码"+count+"次,注意哦,超过3次你的银行卡将被冻结!请重新输入:");}if(count==2){System.out.println("你已输错密码"+count+"次,注意哦,你还有一次输入机会了!请重新输入:");}if(count==3){System.out.println("你输错密码已达到"+count+"次,你的银行卡已经被冻结。"+"想要解冻,请带上你
3、本人的身份证到柜台找工作人员核实以解冻,谢谢合作!");}}}}publicstaticbooleanlogin1()throwsIOException{BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in));Stringstr=br.readLine();booleanresult=false;if(str.equals("123456"))result=true;returnresult;}publicstaticintjob(intmoney)throwsIOException{BufferedReade
4、rbr=newBufferedReader(newInputStreamReader(System.in));Stringstr;//定义一个字符串变量System.out.println("请选择你要的功能:");str=br.readLine();//读取用户输入信息inta=1;//对a值进行初始化a=Integer.parseInt(str);if(a<=5&&a>=1){if(a==1){System.out.println("你选择的功能是:余额查询");select(money);}if(a==2){System.out.println("你选择的功能是:取款");o
5、utputMoney(money);select(money);}if(a==3){System.out.println("你选择的功能是:存款");inputMoney(money);select(money);}if(a==4){System.out.println("你选择的功能是:转帐");moveMoney(money);select(money);}while(a==5){System.out.println("你选择的功能是:取卡");x();select(money);break;}}else{{System.out.println("看清楚点咯,请选择正确的选
6、项哦");job(money);}}returna;}publicstaticintoutputMoney(intx)throwsIOException{BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in));System.out.println("请输入你取款的金额:");inty=0;try{y=Integer.parseInt(br.readLine());}catch(NumberFormatExceptione){e.printStackTrace();}catch(IOExceptione){e
7、.printStackTrace();}if(y%50==0&&x>=y){x=x-y;System.out.println("尊敬的客户,你这次取了"+y+"元,你还有"+x+"元.");job(x);}if(y%50==0&&x
此文档下载收益归作者所有