Tisho_Todorov

01.OddOrEvenIntegers

Oct 12th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System;
  2.  
  3. class OddOrEvenIntegers
  4. {
  5.     static void Main()
  6.     {
  7.         Console.WriteLine("Give us a number:");
  8.         int num = int.Parse(Console.ReadLine());
  9.         if (num % 2 == 0)
  10.             Console.WriteLine("Your number is even");
  11.         else
  12.             Console.WriteLine("Your number is odd");
  13.         Console.Title = "Created by T.Todorov";
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment