- import java.util.Scanner;
- public class JPA03
- {
- static Scanner num=new Scanner(System.in);
- public static void main(String[] args) {
- int total = 0;
- int s = 0;
- int count = 0;
- double average;
-
-
- while(true)
- {
- System.out.print("Please enter meal dollars or enter -1 to stop: ");
- s=num.nextInt();
- if(s==-1)
- {
- break;
- }
- total+=s;
- count++;
-
- }
- average=total/count;
- System.out.printf("餐點總費用:",total);
- System.out.printf(" %d 道餐點平均費用為: %.2f %n",average);
- }
-
- }
複製代碼 |