Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

백준[Java] 2562번 최댓값 본문

IT/Java[백준]

백준[Java] 2562번 최댓값

빌드이너프 2023. 2. 27. 23:57

https://www.acmicpc.net/problem/2562

 

2562번: 최댓값

9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어

www.acmicpc.net

문제풀이 1

import java.util.Scanner;
public class _2562_1 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int[] arr = new int[9];

        for (int i = 0; i < 9; i++) {
            arr[i] = sc.nextInt();
        }
        sc.close();

        int max = 0;
        int count = 0;
        int index = 0;

        for (int bi : arr) {
            count++;
            if (bi > max) {
                max = bi;
                index = count;
            }
        }
        System.out.println(max);
        System.out.println(index);
    }
}

문제풀이 2

import java.util.Scanner;

public class _2562_2 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int[] arr = new int[9];

        for (int i = 0; i < 9; i++) {
            arr[i] = sc.nextInt();
        }
        sc.close();

        int max = 0;
        int count = 0;
        int index = 0;

        for (int i = 0; i < 9; i++) {
            count++;
            if (arr[i] > max) {
                max = arr[i];
                index = count;
            }
        }
        System.out.println(max);
        System.out.println(index);
    }
}

문제풀이 3

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class _2562_3 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int[] arr = new int[9];

        for (int i = 0; i < 9; i++) {
            arr[i] = Integer.parseInt(br.readLine());
        }
        br.close();

        int max = 0;
        int count = 0;
        int index = 0;

        for (int i = 0; i < 9; i++) {
            count++;
            if (arr[i] > max) {
                max = arr[i];
                index = count;
            }
        }
        System.out.println(max);
        System.out.println(index);
    }
}

문제풀이 4

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class _2562_4 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int max = 0;
        int index = 0;

        for (int i = 0; i < 9; i++) {
            int NN = Integer.parseInt(br.readLine());

            if (NN > max){
                max = NN;
                index = i;
            }
        }
        System.out.println(max);
        System.out.println(index+1);
    }
}

배열 미사용


 

'IT > Java[백준]' 카테고리의 다른 글

백준[Java] 10813번 공 바꾸기  (0) 2023.02.28
백준[Java] 10810번 공 넣기  (0) 2023.02.28
백준[Java] 10871번 최소,최대  (0) 2023.02.27
백준[Java] 10871번 X보다 작은 수  (0) 2023.02.26
백준[Java] 10807번 개수 세기  (0) 2023.02.25