Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2.  
  3. namespace CsLightHomeworks
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int appoinmentTime = 10;
  10.  
  11.             Console.Write("Введите кол-во старушек: ");
  12.             int peopleAmount = Convert.ToInt32(Console.ReadLine());
  13.  
  14.             int hoursToWait = (peopleAmount * appoinmentTime) / 60;
  15.             int minutesToWait = (peopleAmount * appoinmentTime) % 60;
  16.  
  17.             Console.WriteLine($"Вы должны отстоять в очереди {hoursToWait} часа и {minutesToWait} минут.");
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement