當前位置:首頁 » 編程語言 » 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;

}

}

熱點內容
linux命令包 發布:2025-01-10 23:54:26 瀏覽:31
python輪廓 發布:2025-01-10 23:49:23 瀏覽:177
思科配置線怎麼選 發布:2025-01-10 23:48:44 瀏覽:703
解壓水晶泥 發布:2025-01-10 23:27:23 瀏覽:634
小米攝像頭如何改wifi密碼 發布:2025-01-10 23:25:14 瀏覽:114
阿里雲伺服器首頁 發布:2025-01-10 23:24:15 瀏覽:435
win2003單網卡搭建vpn伺服器搭建 發布:2025-01-10 23:21:13 瀏覽:355
如何製作原始傳奇腳本 發布:2025-01-10 23:00:30 瀏覽:118
小程序免費模板源碼下載 發布:2025-01-10 22:55:23 瀏覽:234
gradle編譯jar 發布:2025-01-10 22:54:36 瀏覽:797