命令行界面的簡單銀行系統

来源:http://www.cnblogs.com/plumsq/archive/2017/09/19/7554492.html
-Advertisement-
Play Games

先是一個銀行類: 再是銀行卡類: 信用卡繼承自銀行卡類: 借記卡類沒有實現:寫了一部分。 ...


先是一個銀行類:

package com.Testabstract;

import java.util.*;
public class Bank
{
    //ArrayList<String> account = new ArrayList<String>();


        public static void main(String[] args){
                CreditAccount credit = new CreditAccount();
                DebitAccount debit = new DebitAccount();
                Account account = new Account();
        System.out.println("*********************************");
        System.out.println("*"+"                               "+"*");
        System.out.println("*"+"                               "+"*");
        System.out.println("*"+"     歡迎使用銀行管理系統      "+"*");
        System.out.println("*"+"                               "+"*");
        System.out.println("*"+"                               "+"*");
        System.out.println("*********************************");
        Scanner sc = new Scanner(System.in);
        while(true){
            System.out.print("請輸入指令(1:開戶 2:登錄 3:退出):");
            byte sel = sc.nextByte();
            switch(sel){
            case 1:
                System.out.print("請選擇您要開戶的類型(1:借記卡   2:信用卡):");
                byte select = sc.nextByte();
                if(select==1){
                    System.out.print("您選擇了借記卡,");
                    debit.openAccount();
                    debit.showAccount();
                }else{
                    System.out.print("您選擇了信用卡,");
                    credit.openAccount();
                    credit.showAccount();
                }
                break;
            case 2:
                //應該使用name.startWith("")方法增加一個判定,如何賬戶的第一個數為1,
                //則應該使用借記卡的login()方法,如果第一個數為2,則調用信用卡的
                //login();方法,
                account.login();
                System.out.println("登錄成功,你的卡片類型為借記卡!");
                while(true){
                System.out.print("請輸入指令(1、存款 2、取款 3、退出)");
                byte select1 = sc.nextByte();
                switch(select1){
                    case 1:
                        debit.deposit();
                        break;
                    case 2:
                        debit.withdraw();
                        break;
                    case 3:
                        break;
                }
                if(select1==3)
                    break;
                }
            case 3:
                System.out.println("謝謝使用,再見!");
                System.exit(0);
            }
            sc.close();
        }
    }
}

再是銀行卡類:

import java.util.*;
public class  Account
{
    private int id = 1001;
    private String name = null;
    private String password = "12345678";
    private int personID = 0;
    private String email = null;
    public double blance = 0;
    Scanner input = new Scanner(System.in);

    public Account(){   //無參構造方法
    }

    public Account(int id,String name,String password,int personID,String email,double blance){    //構造方法
    this.id = id;  //傳參時一定要定義參數
    this.name = name;
    this.password = password;
    this.email = email;
    this.blance = blance;
    }

    public int getID(){ //返回值是什麼類型的,方法的類型就是什麼。
        return id;
    }

    public String getName(){
        return name;
    }

    public  String getPassword(){
        return password;
    }

    public int getPersonID(){
        return personID;
    }

    public String getEmail(){
        return email;
    }

    public double getBlance(){
        return blance;
    }

    public double deposit(){   //存款
        System.out.print("請輸入存款金額:");
        double money = input.nextDouble();
        System.out.println("存款成功!");
        blance = blance+money;
        System.out.println("您現在的存款金額為:"+getBlance());
        return blance;
    }

    public double withdraw(){   //取款
        System.out.print("請輸入取款金額:");
        double money = input.nextDouble();
        if(money>blance)
        System.out.println("對不起,您的餘額不足!");
        else{
        blance = blance-money;
        System.out.println("取款成功!你的預存款餘額還剩:"+getBlance());
        }
        return blance;
    }

    public void showAccount(){
        System.out.println("卡號:"+getID());
        System.out.println("姓名:"+getName());
        System.out.println("身份證號:"+getPersonID());
        System.out.println("郵箱:"+getEmail());
        System.out.println("預存款金額:"+getBlance());
    }

    public void openAccount()
    {
        id = id+1;
        System.out.print("請輸入用戶名:");
        name = input.next();
        String word1;
        String word2;
        while(true){System.out.print("請輸入密碼:");
        word1 = input.next();
        if(word1.length()<8)
            System.out.println("密碼小於8位,請重新輸入!");
        else
            break;
        }


        while(true){
            System.out.print("請再次輸入密碼:");
            word2 = input.next();
        
        if(!word2.equals(word1))
            System.out.println("兩次密碼不一致!請重新輸入!");
        else
            break;
        }
        
        System.out.print("請輸入身份證號:");
        personID = input.nextInt();

        while(true){
            System.out.print("請輸入郵箱:");
            email = input.next();

        if(!email.endsWith(".com"))
            System.out.println("郵箱格式不正確,請重新輸入!");
        else
            break;
        }

        System.out.print("請輸入預存款金額:");
        blance = input.nextDouble();

        System.out.println("開戶成功!");
    }

    public void login(){
        while(true){System.out.print("請輸入賬號:");
            int tempID = input.nextInt();
            if(tempID!=id)
                    System.out.println("賬號錯誤,請重新輸入!");
            else
                break;
            }


        while(true){
            System.out.print("請輸入密碼:");
            String tempPassword = input.next();
        
                if(!tempPassword.equals(password))
                    System.out.println("密碼錯誤!請重新輸入!");
                else
                    break;
        }
    }
}

信用卡繼承自銀行卡類:

public class CreditAccount extends Account  //信用卡類繼承Account類
{
    private double ceiling = 10000;

    public CreditAccount(){}

    public CreditAccount(int id,String name,String password,int personID,String email,double blance,double ceiling){
        super(id,name,password,personID,email,blance);
        //super(name);
        //super(password);
        //super(personId);
        //super(email);
        //super(blance);
        this.ceiling = ceiling;
    }

    public double withdraw(double money,double ceiling){
        if(blance+ceiling<money){
            System.out.println("超過透支額度,請重新輸入!");
        }else{
            System.out.println("取款成功!");
            blance = blance-money;
        }
        return blance;
    }
}

借記卡類沒有實現:寫了一部分。

public class DebitAccount extends Account
{
    public DebitAccount(){}


    public DebitAccount(int id,String name,String password,int personID,String email,double blance){
    super(id,name,password,personID,email,blance);
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 對於web來說,字元串的處理特別重要,而正則表達式是對字元串處理的利器,在字元過濾,驗證方面都能看到她的身影。 今天需要處理一段json字元串,在用String.replaceAll的過程中,遇到了正則表達式不會寫的尷尬場景。所以還是簡單地補補正則表達式的知識吧。 先從一個正則表達式的使用講起。 運 ...
  • sizeof(bool) = 1 sizeof typename是非法的,最好都加上(),不能對void類型和函數指針使用sizeof。 sizeof(指針) = 4 char a[] = "abcdef"; int b[20] = { 3 , 4 }; char c[2][3] = { "aa" ...
  • 本文大綱: 1、C/S體繫結構 2、B/S體系機構 3、兩種體繫結構比較 4.主流的Web程式應用平臺 5.java web學習路線圖 ...
  • 一、繼承 使用場景:能夠控制這個類的構造的時候,才可以使用繼承。 優點:簡單容易使用, 缺點:耦合性大大的增強,不利於後期的維護,所以對於繼承這種方法,謹慎使用。 代碼實現:二、裝飾者模式 使用場景:1、包裝對象和被包裝對象實現相同的介面 2、包裝的對象中需要獲得到被包裝對象的引用。 缺點:如果介面 ...
  • 1、線程的概念: 線程是程式最基本的運行單位,而進程不能運行,所以能運行的,是進程中的線程。 2、線程是如何創建起來的: 進程僅僅是一個容器,包含了線程運行中所需要的數據結構等信息。一個進程創建時,操作系統會創建一個線程,這就是主線程,而其他的從線程,卻要主線程的代碼來創建,也就是由程式員來創建。 ...
  • 文章最下方有對應課程的視頻鏈接哦^_^ 一、安裝、GET,公共方法 二、POST 三、Cookies 四、Session 五、認證 六、超時配置、代理、事件鉤子 七、錯誤異常 ...
  • JDBC java資料庫連接JDBC是sun提供的一套用於操作資料庫的標準介面,不同的資料庫廠商都提供了一套JDBC介面的實現類用與操作其提供的資料庫產品,這一套實現類通常會打成一個jar包發佈,這個包叫驅動包。JDBC 介面中提供了:DriverManager:載入驅動並負責與資料庫連接,Conn ...
  • 定義: 把模塊定義成二進位語言程式的這個過程叫做位元組編譯 python是解釋型語言,它的位元組編譯是由解釋器完成的 編譯py文件,生成pyc結尾的文件的方法, 方法一: Import zipfile.py 方法二: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...