Created
February 8, 2025 10:20
-
-
Save 546748946/d1942363b04f9dcb52562d498abcd265 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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