Created
August 25, 2025 18:52
-
-
Save Attosius/4b93b7f5af02ed07563a7a0cbbb77388 to your computer and use it in GitHub Desktop.
ДЗ: Поликлиника
This file contains hidden or 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
using System; | |
namespace IJuniorTasks | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Write("Введите кол-во пациентов: "); | |
var patientsCount = Convert.ToInt32(Console.ReadLine()); | |
var timeForOnePatientInMinutes = 10; | |
var timeToWaitInMinutesTotal = patientsCount * timeForOnePatientInMinutes; | |
var minutesInHour = 60; | |
var timeToWaitInHours = timeToWaitInMinutesTotal / minutesInHour; | |
var timeToWaitInMinutes = timeToWaitInMinutesTotal % minutesInHour; | |
Console.Write($"Вы должны отстоять в очереди {timeToWaitInHours} часа и {timeToWaitInMinutes} минут."); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment