Voting Age Program in Java
A person can votes if age is greater than or equal to 18.
import java.util.Scanner;
public class VotingAge
{
public static void main(String[] args)
{
int age;
Scanner sc = new Scanner(System.in);
System.out.print("Enter your age=");
age = sc.nextInt();
if (age >= 18)
{
System.out.println("You are eligible for vote.");
}
else
{
System.out.println("You are not eligible for vote.");
}
}
}
Output:
Enter your age=19 You are eligible for vote.b. tech. bca icse java java tutorials learn java mca programs