출처 : https://www.acmicpc.net/problem/10039
쉬운 문제이므로 코드만 올립니당
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q10039 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int point = 0; int result = 0; for(int i=0; i<5; i++) { point = Integer.parseInt(br.readLine()); if(point<40) { result+=40; }else { result+=point; } } System.out.print(result/5); } }
'짱구 굴리기 (Q) - ' 카테고리의 다른 글
[백준 2675] 문자열 반복 (0) | 2019.01.19 |
---|---|
[백준 2577] 숫자의 개수 (0) | 2019.01.18 |
[백준 2920] 음계 (0) | 2019.01.18 |
[백준 2908] 상수 (0) | 2019.01.18 |
[백준 4963] 섬의 개수 (0) | 2019.01.16 |