Advertisement
loleckek228

1.8

Aug 10th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _1._8
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.            
  10.             int fixsTime = 10;
  11.             int time;
  12.             Console.WriteLine("Сколько человек в очереди?\n");
  13.             int sumOfPeople = Convert.ToInt32(Console.ReadLine());
  14.             time = fixsTime * sumOfPeople;
  15.             Console.WriteLine("Вы должны отстоять в очереди: " + time + " минут");
  16.  
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement