/*
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
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