Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void Main(string[] args)
- {
- int price = 100;
- int money = 50;
- bool isAdultContent = true;
- int age = int.Parse(Console.ReadLine());
- if (money >= price)
- {
- if (isAdultContent & age >= 18)
- Console.WriteLine("Вы можете купить товар");
- else Console.WriteLine("Вы не можете купить этот товар из-за возраста");
- }
- else Console.WriteLine("Вы не можете купить товар, у вас недостаточно денег");
- }
Advertisement
Add Comment
Please, Sign In to add comment