Java Program Candidate is eligible for Vote or Not | Class 12 GSEB Java Practical
class voteornot
{
public static void main(String a1[])
{
int m=40;
if (m>=18)
{
System.out.print("Yes,Candidate is eligible to Vote");
}
else
{
System.out.print("No,Candidate is Not eligible to Vote");
}
}
}

