summaryrefslogtreecommitdiffstats
path: root/Java/Vote.java
blob: e0375e79c8a8bf229ebf27a0086e8d34e46a3e88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.io.BufferedReader;

import java.io.InputStreamReader;

class Vote {
    public static void main(String[] args) throws java.io.IOException {
		    int age;
		    System.out.println("input amount:");
		    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
                    age = Integer.parseInt(input.readLine()); 
		    if (age > 18){
                    System.out.println("you can vote");
	            }  else {
		    System.out.println("you cannot vote");
		    }
		    
                    
                    
                    

    }
}

//By msglm; Licensed under the AGPL v3