Welcome To The World Of Hacking


Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code

Thursday

JAVA PROGRAMMING TUTORIAL 12: NESTED IF STATEMENTS



public class HackDefence{

public static void main(String[]args){

int ManAge=56;

if(ManAge>60){

System.out.println("You are not so old");

                   }else{

                     System.out.println("You are almost young");

                     if(ManAge>40){

System.out.println("You should take care of your health");

                           }else{

                               System.out.println("Your health is ok");

                           }

                    }

         }

}

OUTPUT:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...