Advertisement
Guest User

1.7

a guest
Aug 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 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 CSlight1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.Write("Сколько человек в очереди?");
  14.             int people = Convert.ToInt32(Console.ReadLine());
  15.             int timeP = 10;
  16.             int allTime = people * timeP;
  17.            
  18.             Console.WriteLine("Вы должны отстоять в очереди " + allTime + " минут");
  19.          
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement