這篇文章給大家分享的是有關(guān)JAVA如何實現(xiàn)賬戶取款和存款操作的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司提供網(wǎng)站設(shè)計和自適應(yīng)建站服務(wù)。團(tuán)隊由有經(jīng)驗的網(wǎng)頁設(shè)計師、程序員和市場專家組成,能夠提供從H5場景定制,網(wǎng)站制作,1元廣告,模板建站到微信平臺小程序開發(fā)等全方位服務(wù)。 以客戶為中心,致力于為客戶提供創(chuàng)新、高效的解決方案,幫助您打造成功的企業(yè)網(wǎng)站。JAVA 編寫一個程序完成從某賬戶取款和存款的操作
(1)輸入存款金額是,如果非數(shù)值型,捕獲一場并進(jìn)行處理
(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("****當(dāng)前賬戶余額:"+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; } } }}
感謝各位的閱讀!關(guān)于“JAVA如何實現(xiàn)賬戶取款和存款操作”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!