mirror of
https://github.com/danbulant/databaze-ukolu-pro-pana-Malyho
synced 2026-07-10 13:41:50 +00:00
22 lines
No EOL
503 B
C#
22 lines
No EOL
503 B
C#
//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}");
|
|
}
|
|
}
|
|
} |