Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _05_Boolean_Variable
- {
- class BoolVar
- {
- static void Main()
- {
- bool isFemale = false;
- if (isFemale)
- {
- Console.WriteLine("You are female (False)");
- }
- else
- {
- Console.WriteLine("You are male (True)");
- //bool isFemale = true;
- //if (isFemale)
- //Console (You are female (True))
- //else
- //console (You are male (False))
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment