Advertisement
Guest User

2.1

a guest
Aug 23rd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 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 _2._1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.Write("How old are you?: ");
  14.             int age = Convert.ToInt32(Console.ReadLine());
  15.             bool isDoorOpen;
  16.  
  17.             if (age >= 18)
  18.             {
  19.                 isDoorOpen = true;
  20.                 Console.WriteLine("Welcome!");
  21.             }
  22.             isDoorOpen = false;
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement