summaryrefslogtreecommitdiffstats
path: root/Java/AddingUpInt.java
blob: 2f32f61b7b343087d91dec70bc00563f6bed7673 (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
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