import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int result1, result2, hour, minutes, fix = 60,fix2 = 24;
hour = in.nextInt();
minutes = in.nextInt();
minutes = minutes - 45;
if (minutes < 0) {
result2 = fix + minutes;
result1 = --hour;
if(result1 < 0 ) {
result1 = result1 + fix2;
}
} else {
result1 = hour;
result2 = minutes;
}
System.out.println(result1 + " " + result2);
}
}
더 많은 백준 코드가 보고 싶다면 ? https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80
'알고리즘풀이 > 백준-자바' 카테고리의 다른 글
[백준/JAVA] 10950번 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. (0) | 2020.07.20 |
---|---|
[백준/JAVA] 2739번 구구단 (0) | 2020.07.20 |
[백준/JAVA] 14681번 사분면 고르기 (0) | 2020.07.20 |
[백준/JAVA] 2753번 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. (0) | 2020.07.20 |
[백준/JAVA] 9498번 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. (0) | 2020.07.20 |
댓글