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 Homework1_7
- {
- class Program
- {
- static void Main(string[] args)
- {
- int oldLadies;
- int queueTime;
- int receptionTime = 10;
- int hourInMinutes = 60;
- int hours;
- int minutes;
- Console.Write("Введите количество старушек: ");
- oldLadies = Convert.ToInt32(Console.ReadLine());
- queueTime = oldLadies * receptionTime;
- hours = queueTime / hourInMinutes;
- minutes = queueTime % hourInMinutes;
- Console.WriteLine($"Вы должны отстоять в очереди {hours} часа и {minutes} минут.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement