JAVA 자료실

배열에 입력된 숫자 중 가장 큰 수를 구하시오.

작성자 정보

  • 작성자 최고관리자
  • 작성일

컨텐츠 정보

본문


import java.util.Scanner;

public class Main {
	private static int max(int a, int b) {
		return (a > b) ? a : b; // a 가 b 보다 크다면 a를 그렇지 않다면 b를 리턴
	}

	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		System.out.print("생성할 배열의 크기를 입력하세요 : ");
		int number = sc.nextInt();
		int[] array = new int[number];
		
		for (int i = 0; i < number; i++) {
			
			System.out.print("배열에 입력할 정수를 " + number + "개 입력하세요.");
			array[i] = sc.nextInt();
		}
		int result = -1;
		for (int i = 0; i < number; i++) {
			result = max(result, array[i]);
		}
		System.out.println("배열에 입력된 정수 중에서 가장 큰 값은 : " + result + "입니다.");
	}

}

관련자료

댓글 0
등록된 댓글이 없습니다.
알림 0