Advertisement
Guest User

№7

a guest
Jan 23rd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 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 Lesson1_5
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int timeForWaiting = 10;
  14.             Console.WriteLine("-------------Поликлиника-------------");
  15.             Console.Write("Здравствуйте! Скажите пожалуйста сколько человек перед вами в очереди? ");
  16.             int people = Convert.ToInt32(Console.ReadLine());
  17.  
  18.             Console.WriteLine("Примерное время ожидания вашей очереди составляет {0} минут.", timeForWaiting*people);
  19.             Console.ReadKey();
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement