308電腦週邊費用總計

/******
檔名:JPA03.java
題目:TQC+ JAVA6物件導向程式設計 參考答案
時間:2015/06
作者:fang shi mai
******/
import java.util.Scanner;

public class JPA03
{
    static Scanner keyboard = new Scanner(System.in);
    static int i = -1;
    
    public static void main(String[] args)
    {
        int total = 0, s = 0;
        
        
        do
        {
            System.out.print("請輸入消費金額,或輸入-1結束:");
            s=keyboard.nextInt();
            if(s==i)
                break;
            total+=s;
        }while(true);
        System.out.print("電腦週邊總消費:"+total);
    }
}

沒有留言:

張貼留言