Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Homework9
- {
- class Program
- {
- static void Main(string[] args)
- {
- int timeToWait = 10;
- int people;
- int minutes;
- int hours;
- int fullTime;
- Console.Write("Введите кол-во людей: ");
- people = Convert.ToInt32(Console.ReadLine());
- fullTime = people * timeToWait;
- hours = fullTime / 60;
- minutes = fullTime % 60;
- Console.WriteLine($"Вы должны отстоять в очереди {hours} часа и {minutes} минут");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment