Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp9
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("vuvedete chas: ");
- int hh = int.Parse(Console.ReadLine());
- Console.WriteLine("vuvedete minuti: ");
- int mm = int.Parse(Console.ReadLine());
- if (mm < 40)
- {
- Console.WriteLine("Chasat sled 20 minuti shte e: " + hh + ":" + (mm + 20));
- }
- if (mm > 40 )
- {
- hh = hh + 1;
- mm = mm - 40;
- Console.WriteLine("Chasat sled 20 minuti shte e: " + hh + ":" + mm);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement