diff --git a/1.B/U.1 VYPOČTENÍ ČASU/S.1 VYPOČTENÍ ČASU.cs b/1.B/U.1 VYPOČTENÍ ČASU/S.1 VYPOČTENÍ ČASU.cs deleted file mode 100644 index 4cc5a47..0000000 --- a/1.B/U.1 VYPOČTENÍ ČASU/S.1 VYPOČTENÍ ČASU.cs +++ /dev/null @@ -1,22 +0,0 @@ -//by TeolorD -using System; - -namespace ConsoleApp -{ - class Program - { - static void Main(string[] args) - { - Console.Write("Zadej minuty: "); - - int time = Int32.Parse(Console.ReadLine()); - - int leftminutes = time % 60; - - int hours = (time - leftminutes) / 60; - - Console.WriteLine($"Počet hodin: {hours}"); - Console.WriteLine($"Počet minut: {leftminutes}"); - } - } -}