Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp83
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Укажите свой возраст ...");
  10.  
  11. byte yourAge = Convert.ToByte(Console.ReadLine());
  12. byte itTakesYears = 18;
  13.  
  14. bool isDoorOpen = yourAge >= itTakesYears;
  15.  
  16. if (isDoorOpen)
  17. {
  18. Console.WriteLine("Поздравляем вы совершеннолетний !!!");
  19. }
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement