정올 179번 자바1 [정올/JAVA] 179 : 함수2 - 형성평가5 세 개의 실수를 입력받아 합계와 평균을 구하여 평균을 반올림한 정수를 출력하고, 다음은 입력받은 수를 각각 먼저 반올림한 후 합계와 평균을 구하여 평균.. 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 더보기 import java.util.Scanner; public class Main { public static void func(double input1, double input2, double input3) { double sum = input1 + input2 + input3; double average = sum / 3; System.out.println(Math.round(average)); input1 = Math.round(input1); input2 = Math.round(input2); input3 = Math.round(input3); sum = input1 + input2 + input3; average = sum / .. 2020. 7. 28. 이전 1 다음