/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exerjava2; /** * * @author Student */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here int age; age=40; if (age<10){ System.out.println("You're under 10"); }else if(age<20) { System.out.println("Youre under 20"); }else if(age<30) { System.out.println("Youre under 30"); }else if(age<40) { System.out.println("Youre under 40"); }else{ System.out.println("Youre over 40"); } } }