programming question 64 – www.savvyessaywriters.net

programming question 64 – www.savvyessaywriters.net

 

Please help me with this program

Program Specifications: That slacker programmer, Nadha Skolar, is at it again. The company where he used to work has uncovered yet another program of his that does not work properly – it is riddled with syntax, logic errors and poor style. You have again been asked to fix the program so that it runs properly and uses good style. Be sure to change the information in the comment heading at the top of the program prior to submitting for scoring.

The program Nadha Skolar wrote is supposed to test various methods that compute summation formulas using loops to see if the resulting summation from the loop is equivalent to the summation’s “short-cut” formula. For example the summation ∑c from 1 to n where c is a constant would be programmed using a method containing a loop that computes c + c + c + c + … + c (n times). The equivalent “short-cut” for this formula would be c * n.

Nadha Skolar was supposed to write and test three such summation formulas to determine if the methods and corresponding loops correctly computed the summation. In addition to the summation example above, the other two summation formulas that were to be written and checked are:

  • The summation ∑i from 1 to n. This should be equivalent to n(n+1) / 2
  • The summation ∑i2 from 1 to n. This should be equivalent to n(n+1)(2n+1)/6

Sample Execution:

———- TEST 1 ———-
Enter the value for the constant “C”
4

Summation of a constant 4 from 1 to 50
Loop Equation
—- ——–
200 200

———- TEST 2 ———-
Summation of i from 1 to 50

Loop Equation
—- ——–
1275 1275

———- TEST 3 ———-
Summation of i squared from 1 to 50

Loop Equation
—- ——–
42925 42925

/* *******************************************************************

Debug the file and highlight the parts you debugged, explain why

******************************************************************** */

import java.util.Scanner;

/* Name: Summations.java

VUnetID: skolarna

Email: UnemployedSkolar@gmail.com

Honor statement: I have not given or received unauthorized aid on this assignment. Can you tell?

Date: 01/25/2017

*/

public class Summation {

public final int N = 50; //constant

public static void main(String[] args) {

one(); //summation of constant c

two(); //summation i 1 to N

three(); //summation of i squared 1 to N

}

// ************************************************

// DESCRIPTION – performs a summation of a constant c

// ************************************************

public static void one() {

int sum=0; //initialize

//print headings

System.out.println(“———- TEST 2 ———-“);

Scanner keyboard = new Scanner(System.in);

//prompt for constant c

System.out.println(“Enter the value for the constant “C”);

c = keyboard.nextInt();

//print column headings

System.out.println();

System.out.println(“Summation of a constant ” + c + ” from 1 to ” + N);

System.out.println(“Loop” + ” ” + “Equation”)

System.out.println(“—-” + ” ” + “——–“);

//loop to compute summation of constant c

for (int i = 0; i <= N; i++) {

sum =+c;

}

//print results

System.out.println(sum + ” ” + sum * N);

System.out.println();

}

// ************************************************

// DESCRIPTION – computes the summation of i from to N

// ************************************************

public static void two() {

System.out.println(“———- TEST 1 ———-“);

System.out.println(“Summation of i from 1 to ” + n);

System.out.println();

System.out.println(“Loop” + ” ”

+ “Equation”);

System.out.println(“—-” + ” ” + “——–“);

for (int i = 0; i < N; i++) { int sum = 0;

sum += N;

System.out.println(sum + ” ” + N * (N + 1) / 2);

System.out.println();}

// ************************************************

// DESCRIPTION – performs a summation of a i squared

// ************************************************

public static void Three() {

int sum = 0; //initialize

//print headings

System.out.print(“———- TEST 3 ———-“);

System.out.println(“Summation of i squared from 1 to ” + N);

System.out.println();

System.out.println(“Loop” + ” ” + “Equation”);

System.out.println(“—-” + ” ” + “——–“);

//loop to compute summation of i squared 1 to N

for (int i = N; i >= 0; i++) {

sum += i * i;

}

//print loop result and the result of the summation formula

System.out.println(sum + ” ” + N * (N + 1) * (2 * N) / 6);

}

}

Savvy Essay Writers

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational