SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SCharp_15
- {
- class Program
- {
- static void Main(string[] args)
- {
- int people_in_line;
- int time_one_people = 10;
- Console.Write("Введите сколько старушек в очереди:");
- people_in_line = Convert.ToInt32(Console.ReadLine());
- int time_line = people_in_line * time_one_people;
- Console.WriteLine($"Сочувствую, Вам прийдеться подождать приема еще - {time_line} минут.");
- Console.ReadKey();
- }
- }
- }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.