fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("Enter number: ");
  8. int x=int.Parse(Console.ReadLine());
  9. if (x%2 ==0){
  10. Console.WriteLine("number is even");
  11. }
  12. else {
  13. Console.WriteLine("number is odd");
  14. }
  15. }
  16. }
  17.  
Success #stdin #stdout 0.06s 30168KB
stdin
7
stdout
Enter number:  
number is odd