dragonbs

minutes

Sep 20th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _03.Time_15Minutes
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int hourss = int.Parse(Console.ReadLine());
  10.             int minutess = int.Parse(Console.ReadLine());
  11.  
  12.             minutess += 15;
  13.  
  14.             if (minutess >= 60)
  15.             {
  16.                 minutess -= 60;
  17.                 hourss += 1;
  18.             }
  19.  
  20.             if (hourss == 24)
  21.             {
  22.                 hourss = 0;
  23.             }
  24.  
  25.             Console.WriteLine($"{hourss}:{minutess:D2}");
  26.         }
  27.     }
  28. }
  29.  
Add Comment
Please, Sign In to add comment