Skip to content

Instantly share code, notes, and snippets.

@546748946
Created February 8, 2025 10:20
Show Gist options
  • Save 546748946/d1942363b04f9dcb52562d498abcd265 to your computer and use it in GitHub Desktop.
Save 546748946/d1942363b04f9dcb52562d498abcd265 to your computer and use it in GitHub Desktop.
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
int time = 10;
Console.Write("Введите количество пациентов: ");
int patients = Convert.ToInt32(Console.ReadLine());
int totalTime = time * patients;
int hours = totalTime / 60;
int minutes = totalTime % 60;
Console.WriteLine($"Вам предстоит ждать {hours} часа и {minutes} минут.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment