Friday, 5 January 2018

How to Check a number is Even or Odd



#include <stdio.h>

#include <conio.h>





main()

{

int n;



printf("ENTER A NUMBER: ");

scanf("%d",&n);



if(n%2==0)

{

printf("%d is an even number",n);

}



else

{

printf("%d is an Odd number",n);



}







}



//2,4,6,8,10,....even

//1,3,5,7,9...... odd


No comments:

Post a Comment

Pass Dynamically Added Html Table Records List To Controller In Asp.net MVC

Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ...