문제 출처 :
https://www.acmicpc.net/problem/2884
다음과 같이 구현하였습니다.
#include <iostream>
#include <vector>
using namespace std;
int main(){
short H, M;
cin >> H >> M ;
M -= 45 ;
if(M < 0){
H -= 1 ;
M += 60 ;
if(H < 0){
H += 24 ;
}
}
cout << H << " " << M ;
return 0 ;
}
https://github.com/gurcks8989/BackJoon/blob/master/Step/02.if%EB%AC%B8/P05_2884.cpp
훈수, 조언 언제나 환영입니다.