当前位置:首页 » 编程语言 » atm机java

atm机java

发布时间: 2022-09-21 16:06:59

java语言模拟一个ATM机的运行

id = input.nextInt();这句有点错额,id前应该加int,不然也会出错

❷ ATM机java代码,求填满!急急急!!!在线等!!!

importjava.util.*;

/**
*.
*
*@author(yourname)
*@version(aversionnumberoradate)
*/
publicclassAccount{
publicstaticvoidmain(String[]args){
intm=0;
booleanexisted=false;
intprice=0;
intflag=0;
while(true){
//显示主菜单
m=displayMenu();
switch(m){
case1:
if(flag==0){
System.err.println("请先开户");
break;
}
//使用Account存款功能
System.out.print("请输入存储的金额,必须是整数");
Scanners=newScanner(System.in);
intp=s.nextInt();
price=price+p;
System.err.println("您当前的余额是"+price);
break;
case2:
//使用Account取款功能
if(flag==0){
System.err.println("请先开户");
break;
}
System.out.print("请输入取储的金额,必须是整数");
Scanners1=newScanner(System.in);
intp1=s1.nextInt();
while(p1>price){
System.err.println("您的余额不足!请重新输入");
s1=newScanner(System.in);
p1=s1.nextInt();
}
price=price-p1;
System.err.println("您当前的余额是"+price);
break;
case3:
if(flag==0){
System.err.println("请先开户");
break;
}
//使用Account查询余额功能
System.err.println("您当前的余额是"+price);
break;
case4:
//newAccount
price=0;
flag=1;
System.err.println("开户成功,当前余额为0元");
break;
case5:
if(flag==0){
System.err.println("您还未开户");
break;
}
//使用Account销户功能
price=0;
flag=0;
System.err.println("销户成功");
break;
case0:
existed=true;
break;
default:
//报错,提示重新输入
}

if(existed){
System.out
.println("====================退出成功!!!====================");
break;
}
}
}

publicstaticintdisplayMenu(){
System.out
.println("====================欢迎使用ATM自助机====================");
System.out.println("1-存款");
System.out.println("2-取款");
System.out.println("3-查询余额");
System.out.println("4-开户");
System.out.println("5-销户");
System.out.println("0-退出");
System.out.print("请选择:");
Scannerin=newScanner(System.in);
intresult=in.nextInt();
returnresult;
}

}

❸ ATM存款机用JAVA怎么做

采用UML方法进行分析与设计并运用JAVA技术实现了B/S模式下的ATM(自动取款机)监控系统。该系统实现了对ATM整机及各个部件的实时状态监控、对ATM机上所发生交易的实时监控、产生各部件故障情况统计分析报表、各类交易的统计分析报表,提高了ATM的运行效率,使ATM实现真正的24小时正常运转。

❹ atm机的java怎么写啊

package demo;
import java.io.*;
/*该类为实现客户信息及部分功能*/
class Account {
private String code =null; //信用卡号
private String name =null; //客户姓名
private String password=null; //客户密码
private double money =0.0; //卡里金额

/********************/
public Account(String code,String name,String password,double money)
{
this.code=code;
this.name=name;
this.password=password;
this.money=money;
}

protected String get_Code() {
return code;
}

protected String get_Name() {
return name;
}

protected String get_Password() {
return password;
}

public double get_Money() {
return money;
}

/*得到剩余的钱的数目*/
protected void set_Balance(double mon) {
money -= mon;
}

/*得到剩余的钱的数目*/
protected void set_Deposit(double mon) {
money += mon;
}
}
/**********实现具体取款机功能*********/
class ATM {
Account act;
// private String name;
// private String pwd;

public ATM() {
act=new Account("000000","Devil","123456",50000);
}

/***********欢迎界面***********/
protected void Welcome()
{
String str="---------------------------------";
System.out.print(str+"\n"+
"欢迎使用Angel模拟自动取款机程序.\n"+str+"\n");
System.out.print(" 1.>取款."+"\n"+
" 2.>存款."+"\n"+
" 3.>查询信息."+"\n"+
" 4.>密码设置."+"\n"+
" 5.>退出系统."+"\n");
}

/**********登陆系统**********/
protected void Load_Sys() throws Exception
{
String card,pwd;
int counter=0;

BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
do {
System.out.println("请输入您的信用卡号:");
card=br.readLine();
System.out.println("请输入您的密码:");
pwd=br.readLine();

if(!isRight(card,pwd))
{
System.out.println("您的卡号或密码输入有误.");
counter++;
}
else
Welcome();
SysOpter();

}while(counter<3);
Lock_Sys();
}

/**********系统操作**********/
protected void SysOpter() throws Exception
{
int num;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("请选择您要操作的项目(1-5):");
num=br.read(); //num为ASICC码转换的整数
switch(num) {
case 49: BetBalance(); break;
case 50: Deposit(); break;
case 51: Inqu_Info(); break;
case 52: Set_Password(); break;
case 53: Exit_Sys(); break;
}
System.exit(1);
}

/**********信息查询
* @throws Exception **********/
protected void Inqu_Info() throws Exception {
System.out.print("---------------------\n"+
act.get_Code()+"\n"+
act.get_Name()+"\n"+
act.get_Money()+"\n"+
"-----------------------");
Welcome();
SysOpter();
}

/**********取款**********/
public void BetBalance() throws Exception
{
String str=null,str1;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
int count=0;//取款错误超过3次自动退出
do {
System.out.println("请输入您要取的数目:");
str=br.readLine();
str1=String.valueOf(act.get_Money());
System.out.println(str1);
if(Double.parseDouble(str)>Double.parseDouble(str1)) {
count++;
System.out.println("超过已有的钱数,请重新输入您要取的数目:");
if(count>=3){
System.out.println("超过已有的钱数,请重新输入您要取的数目:");
Exit_Sys();
}
}
else {
/*操作成功*/
act.set_Balance(Double.parseDouble(str));
System.out.println("取款成功,请收好您的钱.");
Welcome();
SysOpter();
}
}while(true);

}

/*******存款********/
public void Deposit() throws Exception{
String str=null;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
do {
System.out.println("请输入您要存的数目:");
str=br.readLine();
/*操作成功*/
act.set_Deposit(Double.parseDouble(str));
System.out.println("取款成功,请收好您的钱.");
Welcome();
SysOpter();
}while(true);
}

/**********判断卡内是否有钱**********/
protected boolean isBalance() {
if(act.get_Money()<0) {
System.out.println("对不起,您的钱数不够或卡已透支.");
return false;
}
return true;
}

/********卡号密码是否正确******/
protected boolean isRight(String card,String pwd)
{
if(act.get_Code().equals(card) && act.get_Password().equals(pwd))
return true;
else
return false;
}

/**********密码修改**********/
protected void Set_Password() throws Exception
{
String pwd=null;
int counter=0;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
do {
System.out.println("请输入旧密码:");
pwd=br.readLine();
if(act.get_Password().equals(pwd))
{
do {
System.out.println("请输入新密码:");
String pwd1=br.readLine();
System.out.println("请再次输入新密码:");
String pwd2=br.readLine();
if(!pwd1.equals(pwd2))
{
System.out.println("两次输入不一致,请再次输入.");
}
else
{
System.out.println("密码修改成功,请使用新密码.");
Welcome();
SysOpter();
}
}while(true);
}
}while(counter>3);

}

/**********锁定机器**********/
protected void Lock_Sys() {
System.out.println("对不起,您的操作有误,卡已被没收.");
System.exit(1);
}

/**********结束系统**********/
protected void Exit_Sys() {
System.out.println("感谢您使用本系统,欢迎下次在来,再见!");
System.exit(1);
}

}
public class Text
{
public static void main(String[] args) throws Exception
{
ATM atm=new ATM();
atm.Load_Sys();
// atm.Exit_Sys();
}
}

卡号:00000 密码123456 默认50000金额。简单版本的存取款。

❺ 求Java代码 模拟简易atm机

参考了别人的代码。略作修改,已经很简单了:

InfoATM.java:

publicclassInfoATM{

doublemoney=0;

publicInfoATM(doublecash){
super();
this.money=cash;
}
//存款的方法
publicvoidsave(doublecount){
money+=count;
}

//取款的方法
publicvoiddraw(doublecount){
money-=count;
}
publicdoublegetMoney(){
returnmoney;
}
publicvoidsetMoney(doublemoney){
this.money=money;
}

}

TestATM.java:

importjava.awt.BorderLayout;
importjava.awt.GridLayout;
importjava.awt.event.ActionEvent;
importjava.awt.event.ActionListener;

importjavax.swing.JButton;
importjavax.swing.JFrame;
importjavax.swing.JLabel;
importjavax.swing.JPanel;
importjavax.swing.JTextField;

{

=2531222181184935595L;
//主面板pnBasic是用来装pnDate和标签文字的。
privateJPanelpnBasic;
//添加到主面板中的中间pnDate面板是为了装表单的。
privateJPanelpnDate;
//添加到主面板中的北边pnLabel面板是为了装欢迎词的
privateJPanelpnLabel;
InfoATMatm=newInfoATM(0);

publicTestATM(){

pnBasic=newJPanel();
//主面板pnBasic是用来装pnDate和标签文字的。
pnDate=newJPanel(newGridLayout(2,2));
//pnDate面板是为了装表单的。
pnLabel=newJPanel();

JLabeltop=newJLabel("欢迎来到中国银行!");
pnLabel.add(top);
//先将数值添加在一个容器中并设置其在容器的右边,在将容器添加在网格的第一格
JPaneljp1=newJPanel();

JLabelnumber=newJLabel("数值:");
finalJTextFieldbox=newJTextField(5);

jp1.add(number);
jp1.add(box);

JPaneljp2=newJPanel();
JButtoncreate=newJButton("新建银行账户");
jp2.add(create);
JButtontake=newJButton("取款");
JButtonin=newJButton("存款");

pnDate.add(jp1);
pnDate.add(jp2);
pnDate.add(take);
pnDate.add(in);

//加一句下面的就好了
JPaneljpS=newJPanel();
finalJLabeltotal=newJLabel("您现在的账户余额是:0元");
jpS.add(total);

pnBasic.setLayout(newBorderLayout());

pnBasic.add(pnLabel,BorderLayout.NORTH);
pnBasic.add(pnDate,BorderLayout.CENTER);
pnBasic.add(jpS,BorderLayout.SOUTH);

setContentPane(pnBasic);
setBounds(400,250,500,500);
pack();
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setVisible(true);
pack();

in.addActionListener(newActionListener(){
publicvoidactionPerformed(ActionEvente){
if(box.getText()!=null&&box.getText()!=""){
try{
doublecount=Double.parseDouble(box.getText());
if(count>0){
atm.save(count);
total.setText("您现在的账户余额是:"+atm.getMoney()+"元");
box.setText("");
}
}catch(Exceptione1){
System.out.println("您输入的数值必须是数字");
}

}
}
});

take.addActionListener(newActionListener(){
publicvoidactionPerformed(ActionEvente){
if(box.getText()!=null&&box.getText()!=""){
try{
doublecount=Double.parseDouble(box.getText());
if(count>=0&&count<=atm.getMoney()){
atm.draw(count);
total.setText("您现在的账户余额是:"+atm.getMoney()+"元");
box.setText("");
}else{
System.out.println("你的余额不足,取款失败");
}
}catch(Exceptione1){
System.out.println("您输入的数值必须是数字");
}
}
}
});

create.addActionListener(newActionListener(){
publicvoidactionPerformed(ActionEvente){
total.setText("您现在的账户余额是:0元");
atm.setMoney(0);
box.setText("");
}
});

}

publicstaticvoidmain(String[]args){
newTestATM();

}
}

❻ 用java做一个简易的ATM机具体流程在下面

代码如下

packageBaiD;

importjava.util.Scanner;

publicclassATM{
/*1提示请输入密码然后直接进入下一步。密码6位限制(限制方法用“最小大于100000最大小于999999”这样限制)
2.提示密码正确还是错误密码直接弄成“123456”错误返回上一步循环方法用for循环。
3.密码输入正确后进入下一步提示5个选项(1.余额查询“基础10000”2.取款3存款4.退出)
4.进行取款或者存款之后要回到第三步重新选择(余额和取款存款相关联)
备注:用键盘输入的方法用scanner*/

privatestaticintmoney=10000;//全局变量余额默认10000
publicstaticvoidmain(Stringargs[])
{
for(;;){//for循环,有意思吗?
System.out.println("请输入密码:");
Scannerinput=newScanner(System.in);
intpw=input.nextInt();
if(Checkpw(pw)){
System.out.println("密码正确。");
Next();
}

elseSystem.out.println("密码错误!");
}

}
publicstaticbooleanCheckpw(intpw)
{
if(pw==123456)returntrue;//固定密码就不需要限制位数了,反正不符合就错
else
returnfalse;
}

publicstaticvoidNext(){
do{
System.out.println("请选择你需要的功能:");
System.out.println("1.余额查询2.取款3.存款4.退出");
intvalue=newScanner(System.in).nextInt();
switch(value){
case1://查询余额
System.out.println("您的余额为"+money+"元");
break;
case2://取款
System.out.println("请输入取款金额:");

intgetnum=newScanner(System.in).nextInt();
if(getnum<0)System.out.println("输入金额有误!");
elseif(getnum>money)System.out.println("余额不足.");
else{money=money-getnum;System.out.println("取款成功,余额为"+money);}

break;
case3://存款
System.out.println("请输入存款金额:");

intpushnum=newScanner(System.in).nextInt();
if(pushnum<0)System.out.println("输入金额有误!");
else{money=money+pushnum;System.out.println("存款成功,余额为"+money);}
break;
case4://退出
System.out.println("谢谢使用!");
System.exit(0);
break;

default:

System.out.println("输入有误");
break;
}


}while(true);
}

}

2、运行效果

❼ JAVA模拟ATM机

import java.util.*;
public class ATM {
static int people=123456;
static int mima=123456;
static int yue=10000;
static Scanner in=null;
public ATM(int people,int mima){
this.mima=mima;
}
public static void main(String[] args) {
chongxindenglu();
int count=1;
while(count!=0){
System.out.println("1、查询余额");
System.out.println("2、取款");
System.out.println("3、存款");
System.out.println("4、修改密码");
System.out.println("5、重新登录");
count=in.nextInt();
switch(count){
case 1: System.out.println(10000); System.out.println(); break;
case 2: quKuan(); break;
case 3: cunKuan(); break;
case 4: xiugai(); break;
case 5: chongxindenglu();
}
}
}
public static void quKuan(){
System.out.println("请输入取款金额:");
int qukuanjine=in.nextInt();
if(qukuanjine>5000){
System.out.println("取款金额不能大于5000"+"\n");
}else{
if(qukuanjine%100!=0){
System.out.println("取款金额必须为100的整数倍"+"\n");
}else{
yue=yue-qukuanjine;
System.out.println("您取出了"+qukuanjine+"元,您现在的余额为:"+yue+"元"+"\n");
}
}
}

public static void cunKuan(){
System.out.println("请输入存款金额");
int cunkuanjine=in.nextInt();
if(cunkuanjine<0){
System.out.println("存款金额不能小于0");
}else{
yue=yue+cunkuanjine;
System.out.println("您已成功存入:"+cunkuanjine+"元,您现在总余额为:"+yue+"元"+"\n");
}
}

public static void xiugai(){
System.out.println("请输入您的密码:");
int mima1=in.nextInt();
if(mima1==mima){
System.out.println("请输入新密码:");
mima=in.nextInt();
System.out.println("您的密码已修改为:"+mima+"\n");
}else{
System.out.println("密码输入错误:"+"\n");
}
}

public static void chongxindenglu(){
in=new Scanner(System.in);
System.out.println("请输入登录帐号:");
int denglupeople=in.nextInt();
System.out.println("请输入登录密码:");
int denglumima=in.nextInt();

if(denglupeople==people && denglumima==mima)
System.out.println("帐号登录成功"+"\n");
else
System.out.println("密码输入错误,登录失败"+"\n");
}

}

❽ java atm机代码

package arraylist;

import java.util.Scanner;

public class AtmDemo
{

public static void main(String[] args)
{
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
Boolean flag = true;
int times = 0;
while(flag){
times++;
if(times == 4){
System.out.println("密码错误,请取卡");
break;
}
System.out.println("请输入你的密码");
String password = sc.next();

if(password.equals("111111")){
Boolean moneyflag = true;
while(moneyflag){
System.out.println("请输入金额");
int number = sc.nextInt();
if(number >= 0 && number <= 1000 && number % 100 == 0){
System.out.println("用户取了" + number + "元。交易完成");
moneyflag = false;
}else{
System.out.println("请重新输入金额");
}
}
break;
}else{
continue;
}

}
}

}

❾ JAVA 模拟ATM柜员机模拟程序

/**
要求:使用字符用户界面。当输入给定的卡号和密码(初始卡号和密码为123456)时,系统能登录ATM柜员机系统,用户可以按照以下规则进行:
1、查询余额:初始余额为10000元
2、ATM取款:每次取款金额为100的倍数,总额不超过5000元,支取金额不允许透支。
3、ATM存款:不能出现负存款。
4、修改密码:新密码长度不小于6位,不允许出现6位完全相同的情况,只有旧密码正确,新密码符合要求,且两次输入相同的情况下才可以成功修改密码。
(卡号密码余额放到文件中)
*/
publicclassTest{
privatestaticintaccount;
privatestaticintpassword;
privatestaticintmoney;
privatestaticbooleanisLogin;
static{
account=123456;
password=123456;
money=10000;
isLogin=false;
}
//存款
publicvoidcun(intcunKuan){
if(cunKuan>=0){
this.money+=cunKuan;
}else{
System.out.println("存款不能为负!");
}
}
//取款
publicvoidqu(intquKuan){
if(this.money-quKuan<0){
System.out.println("余额不足!");
return;
}

if(isValid(quKuan)){
this.money-=quKuan;
}else{
System.out.println("取款不能为负,且应为100的倍数!");
}
}
//判断是否为有效的金额
privatebooleanisValid(intmoney){
if(money>=0&&money%100==0){
returntrue;
}
returnfalse;
}

//登陆
publicvoidlogin(){
System.out.println("请输入账号和密码【格式为:账号/密码】");
Stringlogin=newScanner(System.in).next();
if(login.equalsIgnoreCase("123456/123456")){
this.isLogin=true;
}else{
System.out.println("账号或者密码错误,请重新输入!");
login();
}
}

//主菜单
publicvoidshow(){
System.out.println("[1]存款");
System.out.println("[2]取款");
System.out.println("[3]退出");
System.out.println("请输入:");
intkey=newScanner(System.in).nextInt();
switch(key){
case1:
cun(newScanner(System.in).nextInt());
break;
case2:
qu(newScanner(System.in).nextInt());
break;
case3:
System.exit(0);
default:
break;
}
}
publicstaticvoidmain(String[]args){
Testt=newTest();
t.login();
if(t.isLogin){
for(;;){
t.show();
System.out.println("您当前的余额为:"+t.money);
}
}

}
}

❿ 用JAVA制作简单的ATM的代码 求教

ok,稍等

呵呵,已经给你拆分成了两个独立的类了。

我再吧注释加起吧。

哪儿不清楚的可以给我留言嘛,刚开始学习的时候就要多看看别人写的代码,然后从中学习。这里写的用到了简单的封装面向对象静态类,你可以在多了解下,不难的。

importjava.util.Scanner;

publicclassAtm{

//显示菜单

staticvoidshowMenu(){

System.out.println();

System.out.print("1.查询账户余额 ");

System.out.print("2.存款 ");

System.out.print("3.取款 ");

System.out.print("0.退出 ");

System.out.print("请选择操作:");

}

publicstaticvoidmain(String[]arg){

//创建一个account的对象

Accountaccount=newAccount();

System.out.println("*******欢迎使用**********");

//循环操作提示

while(true){

showMenu();//调用显示菜单的方法

//得到用户的输入

Scannerscanner=newScanner(System.in);

intinput=scanner.nextInt();

switch(input){

case1:

account.query();

break;

case2:

System.out.print("请输入存款额:");

floatin=scanner.nextFloat();

account.in(in);

account.query();

break;

case3:

System.out.print("请输入取款额:");

floatout=scanner.nextFloat();

account.out(out);

account.query();

break;

case0:

System.out.println("谢谢使用");

System.exit(0);//终止程序

break;

default:

System.out.println("输入有误");

}

}

}

}

//帐号类

classAccount{

privatefloatmoney=8000;

//查询账户余额

publicvoidquery(){

System.out.println("账户余额:"+money);

}

//取出,out是取出的存款数

publicvoidout(floatout){

if(money<out){

System.out.println("账户余额不足");

}

this.money-=money;

}

//存入,in是输入的存款数

publicvoidin(floatin){

this.money+=in;

}

}

热点内容
软件编程培训学院 发布:2025-01-11 04:00:18 浏览:845
路虎揽运配置怎么查询 发布:2025-01-11 03:42:51 浏览:393
仿站源码 发布:2025-01-11 03:42:05 浏览:39
腾讯的云服务器 发布:2025-01-11 03:40:47 浏览:569
百分之十的算法 发布:2025-01-11 03:34:30 浏览:642
java16进制tostring 发布:2025-01-11 03:24:21 浏览:721
mql4c语言 发布:2025-01-11 03:24:20 浏览:255
科尔访问苏联 发布:2025-01-11 03:15:47 浏览:331
python简单计算器 发布:2025-01-11 03:15:13 浏览:577
python绝对路径 发布:2025-01-11 03:10:55 浏览:759