Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class HelloWorld
- {
- public static void Main(string[] args)
- {
- int age = Convert.ToInt32(Console.ReadLine());
- bool drive = false;
- //или - ||
- //и - &&
- if (age >= 18 && drive)
- {
- Console.WriteLine("Я могу водить машину");
- }
- else
- {
- Console.WriteLine("Мне нет 18-и");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement