fr0stn1k

c#Light3.2.6_Kovylovv

Feb 9th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.66 KB | None | 0 0
  1. public static void Main(string[] args)
  2.         {
  3.             int price = 100;
  4.             int money = 50;
  5.             bool isAdultContent = true;
  6.             int age = int.Parse(Console.ReadLine());
  7.  
  8.             if (money >= price)
  9.             {
  10.                 if (isAdultContent & age >= 18)
  11.                     Console.WriteLine("Вы можете купить товар");
  12.                 else Console.WriteLine("Вы не можете купить этот товар из-за возраста");
  13.             }
  14.             else Console.WriteLine("Вы не можете купить товар, у вас недостаточно денег");
  15.  
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment