From 6f2475eb7c8a441c43f768f63fda5726cc53b227 Mon Sep 17 00:00:00 2001 From: teolord <74703619+teolord@users.noreply.github.com> Date: Sun, 31 Oct 2021 16:43:49 +0100 Subject: [PATCH] =?UTF-8?q?Delete=201.B/U.1=20VYPO=C4=8CTEN=C3=8D=20=C4=8C?= =?UTF-8?q?ASU=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1.B/U.1 VYPOČTENÍ ČASU/S.1 VYPOČTENÍ ČASU.cs | 22 -------------------- 1 file changed, 22 deletions(-) delete mode 100644 1.B/U.1 VYPOČTENÍ ČASU/S.1 VYPOČTENÍ ČASU.cs 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}"); - } - } -}