[JAVA] SWEA 3314 - 보충학습과 평균

hyng·2022년 3월 31일
0

SWEA

목록 보기
63/78

import java.util.*;
class Solution
{
    public static final int COUNT = 5;

	public static void main(String args[]) throws Exception
	{
        Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        int TC = Integer.parseInt(sc.nextLine());

        for(int tc=1; tc<=TC; tc++) {
            sb.append("#").append(tc).append(" ");
            int sum = 0;
            for(int j = 0; j < COUNT; j++){
                int score = sc.nextInt();
                sum += score < 40 ? 40 : score;
            }
            sb.append((int)(sum / COUNT)).append("\n");
        }
        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글