diff options
Diffstat (limited to 'Java/Vote.java')
-rw-r--r-- | Java/Vote.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Java/Vote.java b/Java/Vote.java new file mode 100644 index 0000000..e0375e7 --- /dev/null +++ b/Java/Vote.java @@ -0,0 +1,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 |