Posts

Showing posts with the label simple overview of control statements in java

Control Statement's in Java

Control Statements means the control of program is change according to that condtions. Java supports following control statements these are: if statement:      syntax is                    if(condition)//code;                          else//code;   Nested ifs Statement:                syntax is                    if(condition){//code;                        if(condition)//code;                           if(condition)//code;                          else//code;}                         ...