zoukankan      html  css  js  c++  java
  • Bank1

    Bank1:

    package banking1;
    
    //账户
    public class Account {
        private double balance;// 账户余额
    
        public Account(double init_balance) {
            balance = init_balance;
        }
    
        public double getBlance() {
            return balance;
        }
    
        // 存钱
        public void deposit(double amt) {// amt 要存的额度
            balance += amt;
        }
    
        // 取钱
        public void withdraw(double amt) {// amt:要取得额度
            if (balance >= amt) {
                balance -= amt;
            } else {
                System.out.println("余额不足");
            }
        }
    }

    TestBanking1:

    /*
     * This class creates the program to test the banking classes.
     * It creates a new Bank, sets the Customer (with an initial balance),
     * and performs a series of transactions with the Account object.
     */
    package TestBanking;
    
    import banking1.Account;
    
    public class TestBanking1 {
        public static void main(String[] args) {
            Account account;
    
            // Create an account that can has a 500.00 balance.
            account = new Account(500.00);
            System.out.println("Creating an account with a 500.00 balance.");
    
            // code
            account.withdraw(150);
            System.out.println("Withdraw 150.00");
            // code
            account.deposit(22.50);
            System.out.println("Deposit 22.50");
    
            // code
            account.withdraw(47.62);
            System.out.println("Withdraw 47.62");
            // code
            // Print out the final account balance
            System.out.println("The account has a balance of " + account.getBlance());
        }
    }


    输出结果:

    Creating an account with a 500.00 balance.
    Withdraw 150.00
    Deposit 22.50
    Withdraw 47.62
    The account has a balance of 324.88

     
    All that work will definitely pay off
  • 相关阅读:
    最短路打印路径
    hdu1874(dijskstra算法和floyd算法)
    最短路径(Dijkstra算法)
    kruskal算法模板(续)
    kruskal算法模板
    最小生成树prim算法
    hdu1879(并查集)
    hdu1875 并查集
    top 1 1
    mvc 母版页中登录注册和问候的处理
  • 原文地址:https://www.cnblogs.com/afangfang/p/12485757.html
Copyright © 2011-2022 走看看