Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- suspend
- 진짜일본어
- n3문법
- rxjava
- github
- 일본어기초
- Kotlin
- 학습지
- 진짜학습지후기
- posting
- ai
- androidstudio
- webflux
- jlpt
- pullrequest
- 책추천
- coroutine
- 코틀린
- 진짜학습지
- CustomTab
- errorhandling
- KotlinInAction
- 인공지능
- blog
- Android
- PR
- 일본어문법
- 안드로이드
- 책리뷰
- GIT
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 평균_1546 본문
반응형
BaekJoon/BOJ [JAVA] 평균_1546
HINT: 나눗셈 등에서 int형끼리의 계산이 되면 아무리 float로 해도 int로 저장이 된다는 것을 잊지말자!
import java.util.ArrayList;
import java.util.Scanner;
public class baekjoon_1546 {
public static void main(String[] argc){
Scanner scanner = new Scanner(System.in);
float iter = Integer.parseInt(scanner.next());
float max=0;
float all=0;
ArrayList<Integer> arrayList = new ArrayList<>();
for(int i=0;i<iter;i++) {
int tmp = Integer.parseInt(scanner.next());
if(max<=tmp) max = tmp;
arrayList.add(tmp);
}
for(int i=0;i<iter;i++) {
all+=(arrayList.get(i)/max*100);
}
System.out.println((float) all/iter);
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 더하기 사이클_1110 (0) | 2018.11.25 |
---|---|
BaekJoon/BOJ [JAVA] 시험 성적_9498 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] X보다 작은 수_10871 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] 세 수_10817 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] 시험 성적_9498 (0) | 2018.11.25 |
Comments