[BOJ/C++] 2884 알람 시계

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
18/73

시간 계산 문제

#include <iostream>

using namespace std;

int main() {
	int H, M;
	cin >> H >> M;
	if (M >= 45)
		cout << H <<" "<< M - 45;
	else {
		if(H==0)
			cout << "23" <<" "<< M + 15;
		else
			cout << H - 1 <<" "<< M + 15;
	}
	return 0;
}
profile
log

0개의 댓글