Java程序实现ATM取款机 刚出新手村的小白都可以写的出来哦

这篇博客介绍了如何使用Java编写ATM取款机程序,适合面向对象编程初学者。内容包括账户类的设计、实例程序的展示,并提醒读者在遇到问题时可以在评论区交流。
摘要由CSDN通过智能技术生成

账户类

public class Account {
   
    private String name;
    private String word;
    private int money;
    private String id;


    public String getName() {
   
        return name;
    }

    public void setName(String name) {
   
        this.name = name;
    }

    public String getWord() {
   
        return word;
    }

    public void setWord(String word) {
   
        this.word = word;
    }

    public int getMoney() {
   
        return money;
    }

    public void setMoney(int money) {
   
        this.money = money;
    }

    public String getId() {
   
        return id;
    }

    public void setId(String id) {
   
        this.id = id;
    }

    public Account() {
   
    }

    public Account(String name, String word, int money, String id) {
   
        this.name = name;
        this.word = word;
        this.money = money;
        this.id = id;
    }
}

实例程序

public class ATM {
   

    // main方法
    public static void main(String[] args) {
   

        ATM atm = new ATM();
        atm.run(atm.acc);

    }

    // Account类型的数组,用来储存账户
    Account[] account = {
   
            new Account("card1", "mima1", 1000,"001"),
            new Account("card2", "mima2", 2000,"002"),
            new Account("card3", "mima3", 3000,"003")
    };
    // 成员变量,用来承接登录后返回的账户
    private Account acc;
    // 全局变量  键入
    Scanner scanner = new Scanner(System.in);

    // 操作界面
    public void run(Account account) {
   

        this.login();
        if (acc != null)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值