CS201 05
CS201 05
Lecture 5
Basic structure of C program Variables and Data types Operators cout and cin for output and input Braces
Decision
If Statement
If condition is true statements If Alis height is greater then 6 feet Then Ali can become a member of the Basket Ball team
If Statement in C
If (condition) statement ;
If Statement in C
If ( condition ) { statement1 ; statement2 ; : }
If statement in C
if (age1 > age2) cout<<Student 1 is older than student 2 ;
Relational Operators
< less than <= less than or equal to == equal to >= greater than or equal to > greater than != not equal to
Relational Operators a != b; X = 0; X == 0;
Example
#include <iostream.h> main ( ) {
int AmirAge, AmaraAge; AmirAge = 0; AmaraAge = 0; cout<<Please enter Amirs age; cin >> AmirAge; cout<<Please enter Amaras age; cin >> AmaraAge; if AmirAge > AmaraAge) { cout << \n<< Amirs age is greater then Amaras age ; }
Flow line
Continuation mark
Decision
Then
Process
Example
If the student age is greater than 18 or his height is greater than five feet then put him on the foot balll team Else Put him on the chess team
Logical Operators
AND OR && ||
Logical Operators
If a is greater than b AND c is greater than d
In C if(a > b && c> d) if(age > 18 || height > 5)
if-else
if (condition) { statement ; } else { statement ; }
if-else
Entry point for IF-Else block
IF Condition Then Process 1
Else
Process 2
Example
Code
if (AmirAge > AmaraAge) { cout<< Amir is older than Amara ; }
Example
Code
if AmirAge > AmaraAge) { cout<< Amir is older than Amara ; } else { cout<<Amir is younger than Amara ; }
Make a small flow chart of this program and see the one to one correspondence of the chart and the code
Example
Code
if AmirAge > AmaraAge) { cout<< Amir is older than Amara ; } else { cout<<Amir is younger than or of the same age as Amara ; }
Example
If (AmirAge != AmaraAge) cout << Amir and Amaras Ages are not equal;
Example
if ((interMarks > 45) && (testMarks >= passMarks)) { cout << Welcome to Virtual University; }
Example
If(!((interMarks > 45) && (testMarks >= passMarks)))
Nested if
If (age > 18) {
If(height > 5) { : }
}
Make a flowchart of this nested if structure
In Todays Lecture
Decision
If Else
Flowcharts Nested if