Java 숫자 4개를 입력받은 후 평균 출력

pitbull terrier·2021년 6월 22일
0

자바 알고리즘

목록 보기
1/27

문제

해결방안

package pack_Array;

import java.util.Scanner;


public class Average {

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		
		int[] num;
		num = new int[4];
		
		System.out.println("[입력 값의 평균 구하기]");
		
		System.out.print("평균을 구할 숫자 4개를 입력하세요 : ");
		num[0] = scanner.nextInt();
		num[1] = scanner.nextInt();
		num[2] = scanner.nextInt();
		num[3] = scanner.nextInt();
		
		double total = num[0] + num[1] + num[2] + num[3];
		double res = total/4;
		
		System.out.println("합계 : " + res);
		
		
		scanner.close();
		

	}

}

결과

profile
yoonbitnara.github.io

0개의 댓글