Advertisement
TravaMan

Basic_Task3

Nov 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Basic_Task3
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("Введите кол-во старушек: ");
  10.             int countGrandma = Convert.ToInt32(Console.ReadLine());
  11.             int hours = countGrandma / 6;
  12.             int minutes = countGrandma * 10 - hours * 60;
  13.             Console.WriteLine("Вы должны отстоять в очереди " + hours + " часа и " + minutes + " минут.");
  14.             Console.ReadKey();
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement