Advertisement
Marshal_Ananas

1.8

Apr 9th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 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 ConsoleApp4
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Введите кол-во людей в очереди:");
  14.             int a = Convert.ToInt32(Console.ReadLine());
  15.             int hours = (a * 10)/60;
  16.             int minutes = a * 10 - hours * 60;
  17.             Console.WriteLine("Вы должны отстоять в очереди " + hours + " часов " + minutes + " минут.");
  18.             Console.ReadKey();
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement