본문 바로가기

프로그래밍 문제/백준

[백준] 10039번 : 평균 점수 - java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int score = 0;
        int student = 0;
        int sum = 0;
 
        while (student < 5){
            student++;
            score = sc.nextInt();
            if (score < 40)
                score = 40;
                
            sum += score;
        }
 
        System.out.println(sum/student);
    }
}
cs