Advertisement
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 Leson01
- {
- class Program
- {
- static void Main(string[] args)
- {
- int timeInLine = 10;
- Console.WriteLine("Видите кол-во людей в очереди");
- int numberOfPeopleInLine = Convert.ToInt32(Console.ReadLine());
- int convertingPeopleToTime = numberOfPeopleInLine * timeInLine;
- int hour = convertingPeopleToTime / 60;
- int minute = convertingPeopleToTime % 60;
- Console.WriteLine($"Вы должны отстоять в очереди {hour} часа и {minute} минут");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement