Search This Blog

save java programs with".java" extension

examples :

helloworld.java
sample.java
match.java
send-mail.java

quick links

check age and simple if in java

/*
check age 18 or not
*/

class age
{
       public static void main(String args[])
           {
                int age=18;
                if(age>=18)
                    {
                        System.out.println("you are eligible to vote");
                    }
           }
}

output :

you are eligible to vote