공부하기/백준

[Java] 백준 풀기 9699 - RICE SACK

XEV 2023. 5. 12. 23:29

자바 백준 9699번

브론즈 3

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

 

9699번: RICE SACK

For each test case, the output contains a line in the format Case #x: followed by a sequence of integers, where x is the case number (starting from 1) and an integer that indicates the weight of a rice sack that will go to Al-Ameen.

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현

 

 

 

 

 

문제 풀기

입력된 테스트 케이스만큼 for loop 을 돌면서 각각의 row 의 최대값을 찾는다. 최대값을 찾는 방법은 5 개의 수를 입력 받으면서 초기값으로 설정을 해놓은 int maxNum = 0; 와 비교를 하여 입력된 값이 더 크다면 지속적으로 갱신을 하는 방식으로 최대값을 찾는다. 하나의 row 에서 5 개의 수를 모두 검사하고 나면 저장된 최대값을 답안 형식에 맞게 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        
        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        
        for (int i = 1; i <= testCase; i++) {
            int maxNum = 0;
            for (int j = 0; j < 5; j++) {
                int inputNum = sc.nextInt();
                if (maxNum < inputNum) maxNum = inputNum;
            }
            
            System.out.println("Case #" + i + ": " + maxNum);
        }
    }
}