mirror of
https://github.com/danbulant/databaze-ukolu-pro-pana-Malyho
synced 2026-07-11 22:21:16 +00:00
23 lines
472 B
Text
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}");
|
|
|
|
|
|
}
|
|
}
|
|
}
|