Dec 28, 2011

Using Conditional Statements

Using Conditional Statements

The if statement is used to check the condition. If Condition is true Then particular code execute and if condition is not true then it pass to else statement, and that code is execute within else. & else statement is not necessary every time. Check Out One Program to better Understand





#include<iostream.h>
#include<conio.h>
int main()
{
int a; //a integer variable define
cout << "Enter Any Number\n";
cin >> a; // take value in a

if(a%2 == 0)  //check if a%2 == 0 then code execute
/* a%2 means value of a divide by 2 and if the remainder comes out to be zero then its display its Even Number.
*/
{
cout << "Its Even Number\n";
} // code should be written in braces
else
/* Else Dont Require any argument So you need to type else only and rest of code that execute if, if statement is false
Here if a%2 is other than 0 then its show Its Odd Number.
*/
{
cout << "Its Odd Number\n";
}
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