Dec 29, 2011

Using Nested Condition

Using Nested Condition

Nested Condition is if else condition that is used under if or else condition. Its condition within condition. Like : We have to check Something Like Someone DOB First i check date then Month and Then Year Three Statement check in One Condition.
Check out One Example For Better Understand.




#include<iostream.h>

#include<conio.h>

int main()

{
int number;

cout << "Enter Any Number\n";
cin >> number;

if(number >10) // check number greater than 10
{
if(number <100)    // check number less than 100
{
    cout << "Number is Between 10-100";
}
}

else
{
if(number<10) // check number less than 10
{
cout << "Number is less than 10";
}
}

getch();

return 0;


}


OUTPUT




Related Posts:

  • Using else if statement Using else if statement Else if statement is similar to if condition. In else-if condition you can give more than one condition like we have to give… Read More
  • Using Switch & break Statement Using Switch & Break Statement Switch statement is used instead of if statement using if statement multiple time can replace with switch and thi… Read More
  • Using Nested Loop  Using Nested Loop Nested Loop is using loop inside a loop like for loop is under for loop for example:  for(int i=0;i<10;i++) {for(int… Read More
  • Using Nested Condition Using Nested Condition Nested Condition is if else condition that is used under if or else condition. Its condition within condition. Like : We have… Read More
  • Introduction to Loop Introduction to Loop Loop means to repeat again and again. In C++ there are three loops that While loop, do-While loop & For loop. In C++ loop c… Read More

0 comments:

Post a Comment