Wednesday, 9 March 2016

WAP TO ACCEPT A NUMBER AND CHECK IF IT IS DIVISIBLE BY 5 & 7 (using simple commands)

#include<stdio.h>
main()
{
int n;
printf("Enter a no");
scanf("%d",&n);
if((n%5==0)&&(n%7==0))
printf("%d is divisible by both 5 and 7",n);
else
printf("%d is not divisible by both 5 and 7",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