×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Sum of the diagonal elements of 2D Array Pronic Number - java
Sum of the Border elements of 2D Array - Java
8874    Arnab De    04/12/2018

create a double dimension array of size m x n, where m and n are input by the user and calculate the sum of the border elements.

Border elements of an array are placed at the border of the array. Which are satisfy some conditions (i)if row no = 0 or (total row -1) (ii) column no = 0 or (total col -1). Therefore, we just travel the array once and add all the elements which meet the above conditions.

softetechnologies
import java.util.*;
public class Border2D
{
    public static void main(String []args)
    {
        Scanner sc=new Scanner(System.in);
        int s=0,m,n;
        System.out.print("Enter the Row No :");
        m=sc.nextInt();
        System.out.print("Enter the Col No :");
        n=sc.nextInt();
        
        int [][]arr=new int[m][n];
        
        for(int r=0;r<m;r++)
        {
            for(int c=0;c<n;c++)
            {
                arr[r][c]=sc.nextInt();
                
            }
        }
        for(int r=0;r<m;r++)
        {
            for(int c=0;c<n;c++)
            {
                if((r==0) || (r==(m-1)) || (c==0) || (c==(n-1)))  
                {
                    s+=arr[r][c];
                }
            }
        }
        System.out.println("Sum Is : " + s);
    }
}
softetechnologies
Sum of the diagonal elements of 2D Array Pronic Number - java
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Education is not the learing of facts, but the training of the mind to think.
Albert Einstein
2080
55.57
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     42977
01/01/2018     36288
25/06/2018     34742
28/06/2017     34401
02/08/2017     32737
01/08/2017     27246
06/07/2017     27062
15/05/2017     26664
14/07/2017     22275
21/04/2018     20918
softetechnologies