databaze-ukolu-pro-pana-Malyho/1.B/HM.1 VYPOČTENÍ ČASU/SO.1 {TEOLORD}
2021-10-31 16:48:17 +01:00

23 lines
472 B
Text

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}");
}
}
}