알고리즘/백준
[백준 BAEKJOON] 2884번 알람 시계 문제 (JAVA)
문제 소스코드 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(); sc.close(); if (m < 45) { h--; if(h < 0) { h = 24 + h; } m = 60 + (m-45); System.out.printf("%d ",h); System.out.printf("%d", m); } else { System.out.printf("%d ",h); System.out.printf("%d", m-45); } } //main } //class 24시..
2021. 9. 5. 22:53