Shane Chism

Summation Example


Description


This script shows how a mathematical operation, in this case a summation, can be applied in terms of code. In this instance we've got sum{i=0}{n}{i^2}, where n is the input parameter.

You can see the mathematics at WolframAlpha. Moreover, you can view the Python Version or C Version of the script.

Usage


Modify Line 5 changing n to any value you wish to test.

With the default parameter of int n = 5 we get the following output:
Summation of (i^2) from i = 0 to n = 5 is 55

Code

SquareToN.java
View Plain   Download Code
class SquareToN {

	public static void main( String[] args ){
	
		int n = 5;
		System.out.println( "Summation of (i^2) from i = 0 to n = " + n + " is " + DoSquaring( n ) );
	
	}
	
	public static int DoSquaring( int n ){
	
		int x = 0;
		for( int i = 0; i <= n; i++ )
			x = x + ( i * i );
			
		return x;
	
	}

}


 
Java
NOVEMBER 23 2010
Download
76 DOWNLOADS