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 |
Tags
- coroutine
- errorhandling
- n3문법
- pullrequest
- webflux
- blog
- KotlinInAction
- 인공지능
- GIT
- 책리뷰
- 코틀린
- 일본어문법
- 일본어기초
- PR
- posting
- 학습지
- ai
- androidstudio
- rxjava
- 진짜일본어
- Android
- 진짜학습지
- Kotlin
- suspend
- 책추천
- 안드로이드
- CustomTab
- jlpt
- 진짜학습지후기
- github
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 평균 점수_10039 본문
반응형
BaekJoon/BOJ [JAVA] 평균 점수_10039
HINT: 그냥 더하면 되는 쉬운 문제 굳이 배열 쓸 필요도 없는...?
import java.util.Scanner;
public class baekjoon_10039 {
public static void main(String[] argc) {
Scanner scanner = new Scanner(System.in);
int total=0;
for(int iter_count = 0; iter_count < 5; iter_count++) {
int tmp_input = Integer.parseInt(scanner.nextLine());
if(tmp_input>=40) total+=tmp_input;
else total+=40;
}
System.out.println(total/5);
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 문자열 반복_2675 (0) | 2019.01.06 |
---|---|
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] OX 퀴즈_8958 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 단어의 개수_1152 (0) | 2019.01.03 |
BaekJoon/BOJ [JAVA] 한수_1065 (0) | 2019.01.03 |
Comments