summaryrefslogtreecommitdiffstats
path: root/Java/Vote.java
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
committermsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
commit9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch)
treeeb1efc1d028b949dd83bb710c68be8eff58f26e7 /Java/Vote.java
downloadschool-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.gz
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.bz2
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.zip
Inital CommitHEADmaster
Diffstat (limited to 'Java/Vote.java')
-rw-r--r--Java/Vote.java24
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