Course Content
C# Basics
C# Basics
2. Dealing with Data Types
Challenge: else Keyword
Write a condition to check if the number num
is even or odd. If the number is even, output "Even
", otherwise "Odd
".
main
using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int num = 5; // Write code below this line // Write code above this line } } }
- We can determine whether a number is even by verifying if its remainder, resulting from division by
2
, equals zero. - In code the condition will be
x % 2 == 0
wherex
is the number to be checked.
main
using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int num = 5; // Write code below this line if (num % 2 == 0) { Console.WriteLine("Even"); } else { Console.WriteLine("Odd"); } // Write code above this line } } }
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 8