Wednesday, 9 March 2016

WAP TO ACCEPT AN INTEGER AND CHECK IF IT IS EVEN OR ODD

#include<stdio.h>
main()
{
int n;
printf("Enter a no.");
scanf("%d",&n);
if(n%2==0)
printf("%d is an even no",n);
else
printf("%d is an odd no",n);
}

ASSIGNMENT 2)

TO DEMONSTRATE USE OF DECISION MAKING STATEMENTS SUCH AS if AND if-else

You should read following topics before starting this exercise

1. Different types of decision making statements available in C.
2. Syntax for this statements.

i   )  if statements
     
   Syntax =  if (condition)
                   {
                    statement;
                    }

ii  ) if-else
   
   Syntax =  if (condition)
                   {
                    statement;
                    }
                    else
                    {
                    statement;
                    }

iii ) Nested if
   
                   if (condition)
                   {
                            if (condition)
                                          { statement; }
                            else
                                          { statement; }
                    }
                    else
                    {
                            if (condition)
                                          { statement; }
                            else
                                          { statement; }
                    }


No comments:

Post a Comment