summaryrefslogtreecommitdiffstats
path: root/Java/AddingupSquaresandCubes.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/AddingupSquaresandCubes.java
downloadschool-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.gz
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.bz2
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.zip
Inital CommitHEADmaster
Diffstat (limited to 'Java/AddingupSquaresandCubes.java')
-rw-r--r--Java/AddingupSquaresandCubes.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/Java/AddingupSquaresandCubes.java b/Java/AddingupSquaresandCubes.java
new file mode 100644
index 0000000..957f276
--- /dev/null
+++ b/Java/AddingupSquaresandCubes.java
@@ -0,0 +1,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