SWexpertAcademy(2071)

2072 평균값 구하기 (D1)

import java.util.Scanner;
public class Solution {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner stdIn = new Scanner(System.in);
		int num = stdIn.nextInt();
		int number = 1;
		for(int i = 0; i < num; i++) {
			int total = 0;
			for (int j = 0; j< 10; j++) {
				int N = stdIn.nextInt();
				if(N % 2 == 1) {
					total += N;
				}
			}
			System.out.println("#" + number + " "+ total);
			number+= 1;
		}
	}

}

※ 반올림 함수 round 에 대해서 알아보자.

Math.round(67.655*100)/100.0) 이렇게 쓰면 6765.5가 되니까. 여기서 round가 적용되면 6766이 된다. 다시 100.0 여기서 .0을 붙여야 실수로 적용이 되어 나온다. 그러면 67.66이 된다. -> 세번째 자리에서 반올림하여 나오는 것이다. 1000.0이라고 하면 네 번째 자리에서 반올림하게 된다. 10.0을 하면 두번째 자리.


참고자료

자바 반올림 함수 https://jwchoi85.tistory.com/42

0%