Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main(string[] args)
- {
- Console.Write("Количество людей в очереди? ");
- int peopleInQueueCount = Convert.ToInt32(Console.ReadLine());
- int timePerPerson = 10;
- int waitingTimeHours = peopleInQueueCount * timePerPerson / 60;
- int waitingTimeMinuts = peopleInQueueCount * timePerPerson % 60;
- Console.WriteLine($"Количество людей в очереди: {peopleInQueueCount}");
- Console.WriteLine($"Время ожидания: {waitingTimeHours}:{waitingTimeMinuts}");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement