我需要一個簡單的JAVA付款程式,請求那位程式高手幫我解答..
先進行身分確認-->買東西-->扣款-->交易確認-->結束
急救SOS
2006-09-06 12:06:23 · 2 個解答 · 發問者 A YO 1 in 電腦與網際網路 ➔ 程式設計
像是網路購物ㄉ感覺
2006-09-06 16:52:42 · update #1
是購物程式啦!
我原本以為是匯款程式,原本還想加入 3萬元以下防詐騙呢!
2006-09-09 10:46:43 補充:
那是作業嗎?
2006-09-11 23:39:22 補充:
//Power by Eclipse v3.2.0import java.util.Scanner;public class JAVA_TEST{//主程式類別檔名 JAVA_TEST.java public static void main(String[] args){ //=====START=====// Scanner input=new Scanner(System.in); String name="耗呆"; String input_name; int nCHOICE,nMONEY=90000; int nPrice[]={10000,0,10000,10000,99999}; System.out.printf("輸入姓名:"); input_name=input.nextLine(); if(name.equals(input_name)){ System.out.printf("目前額度為 %d 元\n\n",nMONEY); System.out.printf("1.窗戶牌作業系統 %d 元\n",nPrice[0]); System.out.printf("2.企鵝牌作業系統 %d 元\n",nPrice[1]); System.out.printf("3.太陽牌作業系統 %d 元\n",nPrice[2]); System.out.printf("4.蘋果牌作業系統 %d 元\n",nPrice[3]); System.out.printf("5.小綿羊牌超級作業系統 %d 元\n",nPrice[4]); System.out.printf("你要買哪一個作業系統?:"); nCHOICE=input.nextInt(); nCHOICE--; nMONEY-=nPrice[nCHOICE]; if(nMONEY<0){ System.out.printf("以你目前的額度,買不起這項物品!\n"); }else{ System.out.printf("已扣除 %d 元,目前額度為 %d 元\n",nPrice[nCHOICE],nMONEY); } System.out.printf("交易結束!\n"); }else{ System.out.printf("你不是我的客戶!\n"); } //=====END=====// }//main}//JAVA_TEST//身分確認、買東西、扣款、交易確認、結束
2006-09-11 19:39:22 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋
應該是提款吧。
2006-09-06 12:14:41 · answer #2 · answered by Almond 6 · 0⤊ 0⤋