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