您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關JAVA如何實現賬戶取款和存款操作的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
JAVA 編寫一個程序完成從某賬戶取款和存款的操作
(1)輸入存款金額是,如果非數值型,捕獲一場并進行處理
(2)操作賬戶類是,如果取款金額大于余額時則做異常處理
import java.util.Scanner;public class Blank { public static void main(String[] args) { float residue = 10000.0f; String type; Scanner scn = new Scanner(System.in); while(true) { System.out.println("****當前賬戶余額:"+residue+"****"); System.out.println("1.存錢 2.取錢 0.退出"); System.out.print("請選擇(1,2,0):"); type = scn.nextLine(); if(type.equals("1")) { System.out.print("請輸入金額:"); try { int money = scn.nextInt(); residue = money+residue; } catch (Exception e) { // TODO: handle exception System.out.println("輸入錯誤..."); scn.nextLine(); } } else if(type.equals("2")) { try { System.out.print("請輸入:"); int money = scn.nextInt(); if(money>residue) { throw new Exception(); } else { residue = residue-money; } } catch (Exception e) { // TODO: handle exception System.out.println("余額不足"); scn.nextLine(); } } else if(type.equals("0")) { System.out.println("bye.."); break; } } }}
感謝各位的閱讀!關于“JAVA如何實現賬戶取款和存款操作”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。