holllowknight

ДЗ: Поликлиника

Mar 3rd, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DZ4
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             uint visitDuration = 10;
  14.             uint minsAtHour = 60;
  15.  
  16.             Console.Write("Введите количество старушек: ");
  17.             string userInput = Console.ReadLine();
  18.             uint grannies = UInt32.Parse(userInput);
  19.  
  20.             uint expectation = grannies * visitDuration;
  21.             uint minutes = expectation % minsAtHour;
  22.             uint hours = expectation / minsAtHour;
  23.  
  24.             Console.WriteLine("Вы должны отстоять в очереди " + hours + "ч " + minutes + "мин");
  25.         }
  26.     }
  27. }
Add Comment
Please, Sign In to add comment