Question: public class SumOfSequence2Method { public static int sumOfPowersOf(int x) { int sum = (int) (Math.pow(x, 4) + Math.pow(x, 3) + Math.pow(x, 2) + Math.pow(x, 1)
public class SumOfSequence2Method { public static int sumOfPowersOf(int x) { int sum = (int) (Math.pow(x, 4) + Math.pow(x, 3) + Math.pow(x, 2) + Math.pow(x, 1) + Math.pow(x, 0)); return sum; } public static void main(String[] args) { // TODOs: // Replace the 0s below to method invocations to method sumOfPowersOf to calculate the proper sums. // Look at lines 17-22 to see what sum shoud be. int sum1 = 0; int sum2 = 0; int sum3 = 0; int sum4 = 0; int sum5 = 0; int sum6 = 0; System.out.println("2^4 + 2^3 + 2^2 + 2^1 + 2^0 = " + sum1); System.out.println("3^4 + 3^3 + 3^2 + 3^1 + 3^0 = " + sum2); System.out.println("5^4 + 5^3 + 5^2 + 5^1 + 5^0 = " + sum3); System.out.println("7^4 + 7^3 + 7^2 + 7^1 + 7^0 = " + sum4); System.out.println("11^4 + 11^3 + 11^2 + 11^1 + 11^0 = " + sum5); System.out.println("13^4 + 13^3 + 13^2 + 13^1 + 13^0 = " + sum6); } }
6. Repeatively Calculating Similar Sums Saved Please convert the following solution to one based on methods
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
