Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int h = int.Parse(Console.ReadLine());
- int m = int.Parse(Console.ReadLine());
- DateTime hm = DateTime.ParseExact($"{h}:{m}", "H:m", null);
- hm = hm.AddMinutes(15);
- Console.WriteLine(hm.ToString("H:mm"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement