MA 511: Computer Programming: Partha Sarathi Mandal
MA 511: Computer Programming: Partha Sarathi Mandal
Lecture 3:
http://www.iitg.ernet.in/psm/indexing_ma511/y10/index.html
a = 6;
b = 10;
d = ‘X’
c = a*b;
}
} /* end of if */
MA511: Computer Programming
Partha S Mandal, IITG
Nested conditional statement
if(a > b){
if(c>d){
x=y;
}
False True else{
a>b
x=z;
}
else{
False True
c>d x=w;
}
} /* end of if */
x=w x=z x=y
i=i+1
do {
{ s1; s1
S2; s2
… …
}
}
while(i <= 10);
i <= 10
True
False