평균값 구하기 문제

2020. 5. 25. 14:13알고리즘 Algorithm/알고리즘 테스트 algorithm test

반응형

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QRnJqA5cDFAUq&categoryId=AV5QRnJqA5cDFAUq&categoryType=CODE&&&

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

<해당 문제는 삼성 sw expert 아카데미의 문제에 저작권이 있습니다> 

 

 

import java.util.Scanner;

public class Solution {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		sc.nextLine();
		for (int i = 1; i <= T; i++) {
			int sum = 0;
			for (int j = 0; j < 10; j++) {
				int s = sc.nextInt();
					sum += s;
			}
			sc.nextLine();
			System.out.println("#" + i + " " + Math.round(sum/10.0));
		}
	}

}

 

 

 

 

반응형