Advertisement
xomanya

2.1

Aug 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 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 DZ2
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.            
  14.             Console.Write("Будь добр, укажи свой возраст: ");
  15.             int age = Convert.ToInt32(Console.ReadLine());
  16.             bool IsDoorOpen = age >= 18;
  17.             if(IsDoorOpen)
  18.             {
  19.                 Console.WriteLine("Поздравляю, ты можешь пройти.");
  20.             }
  21.             else
  22.             {
  23.                 Console.WriteLine("Беги учить уроки и возвращайся, когда исполнится 18.");
  24.             }
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement