본문 바로가기
프로그래머 ,백준, 유튜브, 문제

백준 수학 10250

by 리승우 2022. 8. 28.

import java.util.Scanner;

public class _10250 {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int t = scan.nextInt();
		
		for(int i=0; i<t; i++) {
			int H = scan.nextInt();
			int W = scan.nextInt();
			int N = scan.nextInt();
			
			if(N%H == 0) {
				System.out.println((H*100)+(N/H));
			} else {
				System.out.println((N%H*100)+(N/H)+1);
			}	
		}	
	}
}

출력값

2
6 12 10
402
30 50 72
1203

 

느낀 점

ㅇㅇㅇㅇ

nextInt()를 3개로 지정해도, 여백(space)으로 구분하여 3개 입력한 다음

Enter를 누르면 3개로 분리되어 입력되는구나! 

댓글