Last active
February 7, 2025 07:24
-
-
Save r1d000/e1051729ff86590d06500578c981a40d 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 oneHour = 60; | |
int expectation = 10; | |
Console.Write("Количество людей в очереди: "); | |
int peopleCount = Convert.ToInt32(Console.ReadLine()); | |
int allExpectation = expectation * peopleCount; | |
int hour = allExpectation / oneHour; | |
int minute = allExpectation % oneHour; | |
Console.WriteLine($"Вам предстоит ждать {hour} час/часа/часов и {minute} минут."); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment