Home Answers Viewqa Java-Beginners two dimensional

 
 


mudita sinha
two dimensional
1 Answer(s)      3 years and 3 months ago
Posted in : Java Beginners

write a program to create a 3*3 array and print the sum of all the numbers stored in it.
View Answers

February 19, 2010 at 12:06 PM


Hi Friend,

Try the following code:

import java.io.*;
import java.util.*;

public class matrix {
public static void main(String[] args) throws IOException {
int rows, cols;
int sum=0;
int[][] matrix;
Scanner input = new Scanner(System.in);
System.out.print("Enter number of rows: ");
rows = input.nextInt();
System.out.print("Enter number of columns: ");
cols = input.nextInt();
matrix = new int[rows][cols];
System.out.println("Enter elements for Matrix");
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
matrix[i][j] = input.nextInt();
}
}
System.out.println("Matrix is: ");
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
sum+=matrix[i][j];
System.out.print(matrix[i][j]+" ");
}
System.out.println();

}
System.out.println("Sum of all elements is: "+sum);
}
}

Thanks









Related Pages:
php two dimensional array
php two dimensional array  php two dimensional array example
two dimensional array
two dimensional array  how tow dimensional array works.How those loopes get incremented .and how every time the value of k changes
reverse two dimensional arrays in java
reverse two dimensional arrays in java  reverse array elements in two dimensional array such that the last element becomes the first
Two Dimensional array program
Two Dimensional array program  consider a two dimensional array of size mn where both mn are greater than 20.derive a function that can be used to elements of the array such that the last element become the first one
two dimensional - Java Beginners
two dimensional  write a program to create a 3*3 array and print the sum of all the numbers stored in it.  Hi Friend, Try the following code: import java.io.*; import java.util.*; public class matrix
Two Dimensional Array Program
Two Dimensional Array Program Using Nested for loop...; program . In this session we will teach how to use of a two dimensional array... are going to make two dimensional array having three row and three columns. 
Two- Dimensional Array - Java Beginners
Two- Dimensional Array  I am new in java programming. I am creating a two-dimensional array. This is my code ** class BinaryNumbers { public static void main(String[] args) { //create a two-dimensional array int ROWS = 21
Two-dimensional arrays
Two-Dimensional Arrays       Two-dimensional arrays are defined as "an array of arrays"... of arrays of  ints". Such an array is said to be a two-dimensional array. 
how do i begin a two dimensional array?
how do i begin a two dimensional array?  I'm new to java programming and need to create a two dimensional array that enters exactly what is entered in the first dimension and then the first non-white space character of what
Two Dimensional Array Program
Two Dimensional Array Program    ... will learn how to display arrange form of two dimensional array program... a integer for array declaration Two dimensional array program. We are going
Two dimensional array in java
Two dimensional array in java. In this section you will learn about two-dimensional array in java with an example. As we know that array is a collection.... int arr[][]; Here arr is a two-dimensional array of type int. To create an array
Square Elements of Two Dimensional Array
Square Elements of Two Dimensional Array   ... the two dimensional array program and its square. This session provide you...: We are going to display the square of two matrix. Firstly, we have to define
Need coding help - two dimensional matrix and it returns back a boolean.
Need coding help - two dimensional matrix and it returns back a boolean.  I need to write a code method that accepts a two dimensional integer arrays as the argument and returns true if the array or matrix is left or right
Two Dimensional Array Program Using Nested For Loop
Two Dimensional Array Program Using Nested For Loop ...;. We are going to make a integer for array declaration Two dimensional array... of Java. In this lesson we will learn how to display arrange form of two
Multi-dimensional arrays
; So far we have studied about the one-dimensional and two... that supports it, the element of the two-dimensional array x is denoted by x[i,j]. .... It does, however, supports an array of arrays. In Java, a two-dimensional array
comparing arraylist of an multi dimensional arraylist
comparing arraylist of an multi dimensional arraylist  can anyone help me in solving the following issue: actually i have an arraylist called dany... araylist.if we find the content of the two arraylist similar then it shuld be stored
Arrays -- Multi-dimensional
this. These examples all use two-dimensional arrays, but the same syntax and coding can easily be extended to arrays of any dimension. By convention two dimensional arrays... the element in that row/array. Visualizing two-dimensional arrays Assume we
Dividing Element of Two Dimensional Array
Dividing  Element of Two Dimensional Array... Java program.  The java two dimensional array program is operate the two... divide of two matrix. First all to we have to define class "
need help with two dimensional array that takes input from user and bubble sorts and selections sorts
need help with two dimensional array that takes input from user and bubble sorts and selections sorts  I can get both of the sorts figured out but i cannot figure out how i can declare a two dimensional array without knowing how
Declare string array in Java (one and two dimensional)
Declare string array in Java (one and two dimensional... dimensional array and two dimensional as well. 1. String arr[] = new String... and initialize two dimensional array String dim2[][] = { {"mahendra
A single dimensional array is called
A single dimensional array is called  What is a single dimensional array called?   A single dimensional array is called LIST
What is Trilateration?
; Introduction GPS receivers calculate the position of objects in two dimensional or three dimensional space using a mathematical process called trilaterlation. Trilateration can be either two dimensional or three dimensional. Let
one dimensional array program
one dimensional array program  Design and implement a java program that will read a file containing numbers and compute the following statistics: the rannge( low, high), the average and the median(middle number). Notes
Multiplication of two Matrix
. The Java two dimensional array  program is operate to the two matrix number... Multiplication of Two Matrix   ... that teaches you the method to multiply two matrix. We are going to make a simple
one dimensional array using java
one dimensional array using java  design and implement a java program that will read a file containing numbers and compute the following statistics: the range(low,high) the average and the median
Matrix multiplication in java
multiplication of two matrices. In java this is a simple program to multiply two matrices, we have to take two-dimensional array and the result should be saved in third two-dimensional array. Here we are going to develop a Java code for matrices
Multiplication of two Matrix
program that will multiply two matrix. Two dimensional array represents... Multiplication of two Matrix    ... for multiplying two matrix to each other. Here providing you Java source code
Dividing of two Matrix in Java
; The java two dimensional array program is operate the two matrix. Now we... Dividing of two Matrix in Java       In this Section we will learn how to get divide of two
Sum of two Matrix
, we need to declare two dimensional array of type integer. Firstly... Sum of  two Matrix       In this section, we are going to calculate the sum of two matrix
C Addition of two matrices
C Addition of two matrices In this section, we are going to calculate the sum of  two 2 X 2 matrices containing rows and columns. For this , we need to declare two dimensional array of integer type. Here, we prompt  the user
Array in Java
. Different types of array used in Java are One-dimensional, Two-dimensional and multi-dimensional. One-dimensional arrays: int[] i; int[] i = new int[5]; int[] = {50,60,70,80,90}; Two-dimensional arrays: Two-dimensional arrays
C Array of String
and handled like a 2d(two dimensional) arrays. You can see in the given example that we have declare a 2 dimensional character array consisting of three 'rows' and twelve
Three Dimensional Array program
Three Dimensional Array program   ... will learn how to use three dimensional array. Firstly, we have to define class... are going to make three dimensional array having multi rows and columns. By using
Display tow dimensional array using one for loop in java
Display tow dimensional array using one for loop in java  Display tow dimensional array using one for loop in java
Display tow dimensional array by matrix form using one for loop in java
Display tow dimensional array by matrix form using one for loop in java  Display tow dimensional array by matrix form using one for loop in java
Grid in Echo3
; Grid is a two-dimensional structure on which the designers and developers can... is having two constructors to create grid component: Grid(): default constructor... a Grid with the default size of 2 and have added two labels into them. We have
Multidimensional Array Java
to store it in an array. We use mostly two types of arrays that is simple array and multi dimensional array.   In the example given below we have used two dimensional array. A two dimensional array can be thought as a grid
plz try to clear my doubt for shuffling multi-dimensional array
plz try to clear my doubt for shuffling multi-dimensional array  hi, if v r using Arrays.asList() means, it may shuffle the row wise list only... v want to shuffle the ful entire multi-simensional array means wat v want to do
Creation Time Comparison of Multi Dimensional Array- Java Tutorials
Creation Time Comparison of Multi Dimensional Array In this section, we will compare the creation time between the different size/dimension of array.  As you know that multidimensional array is the array of arrays. Practically
Changing the value of Array in Java
;    This is very simple of one dimensional array program. In this tutorial you will learn how to change array values. The one dimensional... dimensional array program. In  this program firstly we are going to define
Addition of two numbers
Addition of two numbers  addition of two numbers
The Array Palindrome Number in Java
. In this section you will read how to uses palindrome one dimensional array... to make one dimensional program. For completion the example firstly we have define a class named "Palindome" and two integer type values from user. Java
update two frames at once
update two frames at once  How do I update two frames at once
merge two war files
merge two war files  How to merge two war files using maven??? is there any command
merge two war files
merge two war files  how to merge two war files using maven
Compare two word file
Compare two word file  How to compare two word file using Java
Two - dimension arraylist
Two - dimension arraylist  how to create two - dimension arraylist in jsp-servlet
intersection of two files
intersection of two files  hi!could you please provide me with the java program for displaying intersection of two files
Adding two numbers
Adding two numbers  Accepting value ffrom the keyboard and adding two numbers
Join the two tables in sql
Join the two tables in sql  How to join the two tables in SQL ..and return the value from common column in SQL Database

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.