백준

백준 2884번 문제 알람 시계 (Java)

gxxgsta 2021. 4. 17. 16:01
반응형
SMALL
package alarm;

import java.util.Scanner;

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

		int H = sc.nextInt();
		int M = sc.nextInt();

		if(M>=45){
			System.out.printf("%d %d", H, M-45);
		} else {
			if(H==0){
				System.out.printf("23 %d", 60-(45-M));
			} else {
				System.out.printf("%d %d", H-1, 60-(45-M));
			}
		}
	}
}

printf 사용 잊지 말기

반응형
LIST