[Java 教學範例拷貝]- while 迴圈 (一)
[Java 教學範例拷貝]- while 迴圈 (一)
剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。
拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/
http://openhome.cc/Gossip/JavaGossip-V1/LoopFor.htm
import java.util.Scanner;
public class Average {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int score = 0;
int sum = 0;
int count = -1;
while(score != -1) {
count++;
sum += score;
System.out.print("輸入分數(-1結束):");
score = scanner.nextInt();
}
System.out.println("平均:" + (double)sum/count);
}
}
|