충분히 쌓여가는
백준[Java] 2562번 최댓값 본문
https://www.acmicpc.net/problem/2562
문제풀이 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 |