합과 평균을 줄을 바꿔 출력한다.
평균은 소수점 이하 둘째 자리에서 반올림해서 소수점 이하 첫째 자리까지 출력한다.
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int c = scan.nextInt();
int total = a+b+c;
System.out.println(total);
System.out.println( String.format("%.1f", (double) total/3));
}
}
'자바' 카테고리의 다른 글
[JAVA] 비트단위로 출력 (0) | 2021.06.08 |
---|---|
[JAVA] 정수 2개를 입력받아 2의 거듭제곱 배로 출력하기 (0) | 2021.06.06 |
[JAVA] 정수 2개입력받아 자동 계산하기 (0) | 2021.06.06 |
[JAVA] 문자 1개입력받아 다음문자 출력하기 (0) | 2021.06.06 |
[JAVA] 부호바꾸기 (0) | 2021.06.06 |