blob: 957f276c0ca287208dec0a5d2fe023f6eb7f5729 (
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
26
27
28
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class AddingupSquaresandCubes {
public static void main(String[] args) throws java.io.IOException {
int iterations;
double Squares = 0.0;
double Cubes = 0.0;
double computable = 0.0;
double timesran = 0.0;
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
BufferedReader input2 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Upper Limit:");
iterations = Integer.parseInt(input.readLine());
for(iterations=iterations;iterations>0;iterations--){
timesran++;
Squares = Squares + Math.pow(iterations,2);
Cubes = Cubes + Math.pow(iterations,3);
}
System.out.println("The sum of Squares is " + Squares);
System.out.println("The sum of Cubes is " + Cubes);
}
}
//By msglm; Licensed under the AGPL v3
|