728x90
import java.util.Scanner;
import java.io.FileInputStream;
class d1_2071
{
public static void main(String args[]) throws Exception
{
System.setIn(new FileInputStream("res/input.txt"));
Scanner sc = new Scanner(System.in);
int T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
double sum = 0;
for(int i=0; i<10; i++) {
int num = sc.nextInt();
sum += num; //각 줄의 합
}
double avg = sum/10; //각 줄의 평균
System.out.printf("#%d %.0f\n", test_case, avg);
}
}
}
728x90
'알고리즘 > SWEA' 카테고리의 다른 글
[java][swea][d4] 1210. Ladder1 (0) | 2022.02.09 |
---|---|
[java][swea][d3] 1210. 퍼펙트셔플 (0) | 2022.02.09 |
[java][swea][d1] 2072. 홀수만 더하기 (0) | 2022.01.22 |
[java][swea][d1] 2019. 더블더블 (0) | 2022.01.22 |
[java][swea][d1] 1545. 거꾸로 출력해 보아요 (0) | 2022.01.22 |