Wednesday, 9 March 2016

WAP TO ACCEPT 3 NUMBERS AND CHECK WHETHER THE FIRST IS BETWEEN THE OTHER TWO NUMBERS

#include<stdio.h>
main()
{
int a,b,n;
printf("Enter two nos");
scanf("%d%d",&a,&b);
printf("Enter a no");
scanf("%d",&n);
if((a<=n&&b>=n)||(a>=n&&b<=n))
printf("%d lies between %d and %d",n,a,b);
else
printf("%d does not lies between %d and %d",n,a,b);
}

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