Advertisement
KodingKid

C# answers some fun questions!

Apr 24th, 2021
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. bool canPigsfly? = false;
  2. bool canBirdsswim? = false;
  3. bool canHumansswimandfly? = true;
  4. Console.WriteLine(canPigsfly?); //false
  5. Console.WriteLine(canBirdsswim?); //false
  6. Console.WriteLine(canHumansswimandfly?); //true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement