OpenJudge 2714: 求平均年齡

總時間限制: java

1000mscode

 

內存限制: orm

65536kB內存

描述form

班上有學生若干名,給出每名學生的年齡(整數),求班上全部學生的平均年齡,保留到小數點後兩位。class

輸入import

第一行有一個整數n(1<= n <= 100),表示學生的人數。其後n行每行有1個整數,表示每一個學生的年齡,取值爲15到25。float

輸出im

輸出一行,該行包含一個浮點數,爲要求的平均年齡,保留到小數點後兩位。next

樣例輸入

2
18
17

樣例輸出

17.50

提示

要輸出浮點數、雙精度數小數點後2位數字,能夠用下面這種形式: 

printf("%.2f", num);

來源

2005~2006醫學部計算概論期末考試

import java.util.Scanner;

public class OpenJudge2714 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		int sum = 0;
		for (int i = 0; i < n; i++) {
			sum += scanner.nextInt();
		}
		System.out.println(String.format("%.2f", (float) sum / n));
		scanner.close();
	}
}
相關文章
相關標籤/搜索