Flag This Hub

Java Source code sample: How to Add Numbers inside an Array using For Loop

By


source:linux-mag.com
source:linux-mag.com

This is a Java source code on how to add numbers inside an array using for loop version, this program has also another version on how to add numbers in an array using recursion, if you want to see it too, here is the link to view the page..

In comparison of the other version, you would discover that adding numbers inside an array using for loop is easier to understand and the code is easy to trace. Although both of them has its own advantages, it is really important to know the depth of recursion for other complicated program can only be easily solved using recursion and much complicated on for loop, the best example is the tower of hanoi, it was program using recursion. So, to know how recursion works you can surf my other program which uses recursion, Below is the java source code on adding numbers in an array using for loop.

Java Source code: How to Add Numbers inside an Array using For Loop

//main class


import java.util.Scanner;

public class Main
{

    public static void main(String[] args)
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter the size of the input you want to enter: ");
        int size = input.nextInt();
        int[] numArr = new int[size];
        int sum=0;
        
	System.out.print("Enter "+ size +" numbers: ");
        
	for(int i=0; i<numArr.length; i++)
        {
          numArr[i]=input.nextInt();
          sum = sum + numArr[i];
        }
    
        System.out.print("The sum of the numbers is: " + sum);
    }
}

Sample Output:

Enter the size of the input you want to enter: 5

Enter 5 numbers: 34 2 5 3 6

The sum of the numbers is: 50

If you want to make a method and segregate the implementation of sum for the sake of practice in Object Oriented Programming, just simply code it this way.

//java class

public class ArraySum
{
    public int sumOfArray(int[] array)
    {
        int sum = 0;
        for(int i=0; i<array.length; i++)
        {
            sum = sum + array[i];
        }

        return sum;
    }
}

//main class


import java.util.Scanner;

public class Main
{

    public static void main(String[] args)
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter the size of the input you want to enter: ");
        int size = input.nextInt();
        int[] numArr = new int[size];
        
        System.out.print("Enter "+ size +" numbers: ");
        for(int i=0; i<numArr.length; i++)
        {
          numArr[i]=input.nextInt();
         
        }

        ArraySum access = new ArraySum();
        System.out.print("The sum of the numbers is:" + access.sumOfArray(numArr));        

    }
}

Java E-books

Computer Programming for Teens (For Teens (Course Technology))
Amazon Price: $15.00
List Price: $29.99
Introduction to Java Programming, Comprehensive (8th Edition)
Amazon Price: $75.00
List Price: $137.00

Here is the sample output for the code above.

Sample Output:

Enter the size of the input you want to enter: 5

Enter 5 numbers: 2 5 3 7 25

The sum of the numbers is:42


Want more codes? You might want to check this out.


Perhaps, you may want to read these.

Comments

No comments yet.

Submit a Comment
Members and Guests

Sign in or sign up and post using a hubpages account.



    Like this Hub?
    Please wait working