[백준]C# 코딩 : 2884번(알람 시계)

728x90

https://www.acmicpc.net/problem/2884

 

2884번: 알람 시계

상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만,

www.acmicpc.net

using System;

namespace Backjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] time = Console.ReadLine().Split(" ");

            int h = int.Parse(time[0]);
            int m = int.Parse(time[1]);

            if (m < 45)
            {
                m += 60;
                h--;
                if (h < 0)
                    h = 23;                
            }
            Console.WriteLine("{0} {1}",h,m-45);
        }
    }
}
728x90