summaryrefslogtreecommitdiffstats
path: root/Java/AddingUpInt.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/AddingUpInt.java
downloadschool-code-master.tar.gz
school-code-master.tar.bz2
school-code-master.zip
Inital CommitHEADmaster
Diffstat (limited to 'Java/AddingUpInt.java')
-rw-r--r--Java/AddingUpInt.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/Java/AddingUpInt.java b/Java/AddingUpInt.java
new file mode 100644
index 0000000..2f32f61
--- /dev/null
+++ b/Java/AddingUpInt.java
@@ -0,0 +1,25 @@
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+
+class AddingUpInt {
+ public static void main(String[] args) throws java.io.IOException {
+ int iterations,enteredint;
+ int addable = 0;
+ BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
+ BufferedReader input2 = new BufferedReader(new InputStreamReader(System.in));
+ System.out.println("How many ints will be added");
+ iterations = Integer.parseInt(input.readLine());
+
+
+ for(iterations=iterations;iterations>0;iterations--){
+ System.out.println("Enter an Int");
+ enteredint = Integer.parseInt(input2.readLine());
+ addable = addable+enteredint;
+ }
+ System.out.println("The sum is: " + addable);
+
+ }
+
+
+}
+//By msglm; Licensed under the AGPL v3