Advertisement
kzborisov

Time + 15

Sep 21st, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2.  
  3. class TimeAfter15Minutes
  4. {
  5. static void Main(string[] args)
  6. {
  7. int hours = int.Parse(Console.ReadLine());
  8. int minutes = int.Parse(Console.ReadLine());
  9. TimeSpan time = new TimeSpan(hours, minutes + 15, 0);
  10. Console.WriteLine(time.ToString("h\\:mm"));
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement