Skip to content

Instantly share code, notes, and snippets.

@r1d000
Last active February 7, 2025 07:24
Show Gist options
  • Save r1d000/e1051729ff86590d06500578c981a40d to your computer and use it in GitHub Desktop.
Save r1d000/e1051729ff86590d06500578c981a40d to your computer and use it in GitHub Desktop.
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