ADVT POST

if condition java program tutorial beginner to advanced

IF CONDITION JAVA PROGRAM

public class c_ifcondition {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
int number=10;
if(number>=5)
{
    System.out.println("Number is greater then 5");
}
    }

}


Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.