Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

지극히 개인적인 개발블로그

백준 알고리즘 2884: 알람 시계(C++) 본문

알고리즘

백준 알고리즘 2884: 알람 시계(C++)

코드분쇄기 2019. 9. 13. 19:21

 

#include <iostream>
using namespace std;

int main() {
	int h, m;
	cin >> h >> m;

	if (m < 45) {
		m += 15;
		h--;
	}
	else
		m -= 45;
	if (h < 0)
		h = 23;
	cout << h << " " << m << endl;

}

45를 기준으로 분 계산을 어떻게 처리할 것인지, 0시 전은 어떻게 처리할 것인지만 판단하면 됩니다.