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