java 2 d array program

java 2 d array program

write a program 2-d matrix addition through user's input?
View Answers

October 18, 2010 at 10:34 AM

Hi Friend,

Try the following code:

import java.util.*;
    class MatrixAddition{
        public static void main(String[] args) throws Exception {
          Scanner input=new Scanner(System.in);
    int[][] A = new int[2][2];
    int[][] B = new int[2][2];
    int[][] C = new int[2][2];
    System.out.println("Enter elements for matrix A : ");
    for (int i=0 ; i < A.length ; i++)
    for  (int j=0 ; j < A[i].length ; j++){
    A[i][j] = input.nextInt();
    }
    System.out.println("Enter elements for matrix B : ");
    for (int i=0 ; i < B.length ; i++)
    for  (int j=0 ; j < B[i].length ; j++){
    B[i][j] = input.nextInt();
    }
    System.out.println("Matrix A: ");
            for (int i=0 ; i < A.length ; i++)
            {     System.out.println();
                for  (int j=0 ; j < A[i].length ; j++){
                    System.out.print(A[i][j]+" ");
                      }
            }
    System.out.println();
    System.out.println("Matrix B: ");
            for (int i=0 ; i < B.length ; i++)
            {     System.out.println();
                for  (int j=0 ; j < B[i].length ; j++){
                    System.out.print(B[i][j]+" ");
                      }
            }
    System.out.println();
        System.out.println("Sum of 2 matrices,Matrix C: ");
        for(int i=0;i<2;i++){
    for(int j=0;j<2;j++){
    C[i][j]=A[i][j]+B[i][j];
    System.out.print(C[i][j]+" ");
    }
    System.out.println();
    }
    }
    }

Thanks









Related Tutorials/Questions & Answers:
java 2 d array program
java 2 d array program  write a program 2-d matrix addition through...[][] A = new int[2][2]; int[][] B = new int[2][2]; int[][] C = new int[2][2...]+" "); } } System.out.println(); System.out.println("Sum of 2 matrices,Matrix C
java program based on array
java program based on array  write a program to create an array of 10 integers in main.accept values from the user in that array .now again ask the use another nomber and pass the array and the no. entered to function called
Advertisements
array variable in a java program
array variable in a java program  How do i write a program that will prompt the user for a list of 5 prices, that cosist of the sum of all the prices, the average of the prices, and all prices that are higher than the calculated
executing java program with 2 classes
executing java program with 2 classes  how to run a program of java containing more than one class....ex of program is given below.... class C...); } }   Executing java program with 2 classes save the file with D.java
java program based on array
java program based on array  Create Student class with attributes... StudentDemo which will have main method. Declare array of Student object with size 10. Initialize all 10 elements of this array with new objects. Write logic which
array program
array program  write a java program which will take 10 elements as command line arguments and count how many times 3 occurs in array
program in array
program in array  print("code sample");write a program that initializes an array with ten random integers and then prints four lines of output...(); int arr[]=new int[10]; System.out.println("Array of Random
How to convert java BigDecimal to normal byte array not 2 s complement
How to convert java BigDecimal to normal byte array not 2 s complement  How to convert java BigDecimal to normal byte array not 2 s complement
program of array
program of array  write a program that initializes an array with ten random integers and then prints four lines of output,containing:every element at an even index,every even element,all elements in reverse order,and only
how to sort the result of this 2 class program in java.....????
how to sort the result of this 2 class program in java.....????  package setget1_method; import java.util.Scanner; public class Main { { { Scanner input = new Scanner(System.in); LBook[] book = new LBook[5]; String
Array list java program - Java Interview Questions
Array list java program  Create an employee class with an employee... an employee id is given, display his name & address? Please provide the DETAIL java... we can display his name and address when an employee id is given? i need java
create and use an array variable in a java program
create and use an array variable in a java program  how do i write a program that will prompt the user for a list of 5 prices, once the user has entered all values , your program should compute and display the following: The sum
Reverse integer array program
with all the elements in reverse order. For example, if the input array is [2, 4, 6, 8] the output array is [8, 6, 4, 2]. Then call your method from the main method...Reverse integer array program  Been tasked with the following
Program to implement array of Objects.
Program to implement array of Objects.  Create a class it has.... Initialize an array of objects. Pass a name from the command line & search for the name in the array of objects , if it is existing print the information
how to make a program on array
how to make a program on array  When you make a program on array that the element will move downward and upward and when you input twice 0 then thats the time that it will not move. pls. give me a formula...tnx
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
Two Dimensional array program
to elements of the array such that the last element become the first one and the first become the last.let the program output elements of the first array...Two Dimensional array program  consider a two dimensional array
Three Dimensional Array program
Three Dimensional Array program       This is a very simple Java program. In this program we... the multidimensional array we are going to make a matrix. Now in this program use
Two Dimensional Array Program
;    This is very simple program of Java. In this lesson we will learn how to display arrange form of two dimensional array program... a integer for array declaration Two dimensional array program. We are going
program to implement array of objects
program to implement array of objects  import java.io.*; import java.util.*; public class dataa { DataInputStream in=new DataInputStream(System.in); int i; int a[i]=int acid[5]; String name1[i]=new String[5
My first struts 2 program
My first struts 2 program  Hi, Please help me for my first struts 2... from one page to another. Details: I am trying my first Struts 2 example program. I want to pass values from first loginpage.jsp to displaypage.jsp. I
Two Dimensional Array Program
Two Dimensional Array Program Using Nested for loop       This is a simple Java array  program . In this session we will teach how to use of a two dimensional array
C Program for Addtion of 2*2 Diagnol Matrix - Development process
C Program for Addtion of 2*2 Diagnol Matrix   Hello Sir, I want C...;i<2;i++) { for(j=0;j<2;j++){ scanf("%d",&a[i][j]); } } printf("\nThe...;i<2;i++){ for(j=0;j<2;j++){ scanf("%d",&b[i][j]); } } printf("\nThe
Need help in constructing a 2 dimensionla array?
Need help in constructing a 2 dimensionla array?  Construct a 2 dimensional array that for each entry in the array, display the index of the first... array. import java.util.*; public class twoDimension{ public static void main
Java array
Java array  Java program to find first two maximum numbers in an array,using single loop without sorting array
Two Dimensional Array Program Using Nested For Loop
Two Dimensional Array Program Using Nested For Loop        This is very simple program... dimensional array program. Firstly, we have to define class "TwoDimensional "
Write a java program that encrypt and decrypt some string by adding or removing 2 on each character.
Write a java program that encrypt and decrypt some string by adding or removing 2 on each character.  Write a java program that encrypt and decrypt some string by adding or removing 2 on each character. Example 1 : Please Enter
Changing the value of Array in Java
array program is provided Java application program about the explanation... Changing the Value of Array in Java       This is very simple of one dimensional array program
java program
java program   A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A java program to display above triangle
Array in Java
_TO_REPLACE_1 Different types of array used in Java are One-dimensional, Two...}{80,90,100,110}; 3 steps are followed while using an array in a program... of an Array Arrays in Java for different data types can be declared as follows
Java Loop 2 - Java Beginners
Java Loop 2  WAP to print d following patter wid d help of ne loop possible
Java Array
Java Array   a) Write an array program that perform the following: i) Declares a String array initialized with the following strings: ââ?¬Å...?¬Â?. ii) Write a loop that displays the contents of each element in the array
Program to read 2 integers using oops concepts
Program to read 2 integers using oops concepts  Write a program to read two integers with the following significance. ? The first integer value represents a time of day on a 24 hour clock, so that 1245 represents quarter
Java array
Java array   How can one prove that the array is not null but empty
java array
java array  q4.array Write a program that accepts two arrays, an array of fruit names and an array of price of fruits, and a fruit name and returns the price of the fruit. (Assume that a price in the second array corresponds
java program
java program  write a java program to display array list and calculate the average of given array
java program
java program  write a java program to display array list and calculate the average of given array
java array
java array  write a java method that takes an array of float values...)){ System.out.println("There are duplicate elements."); Float array...++){ array[i]=new Float(arr[i]); } Set<Float>
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
Convert To Java Program - Java Beginners
Convert To Java Program  Can anyone convert this C program codes to Java codes,please...thanks! #include int array[20]; int dcn; int cntr=0...("5-Exit\n"); scanf("%d",&num); if(num==1) { add(); } else if(num==2
java program
java program  write a program to read 10 numbers from user and store it in a array. display the maximum n minimum number in the array
What is Array in Java?
What is Array in Java?  Hi, What is Array in Java? How to create an array in Java and use it? Thanks   Hi, Array is very important in Java as it is used heavily in programming. Array is Java is a container object
The Array Palindrome Number in Java
The Array Palindrome Number in Java       This is a Java simple palindrome number program... program. The array palindrome number arrange the array number. This session
java array
java array Two cells is a matrix will be called connected if they are adjacent... takes 2 dimensional integer array as input and prints out heaviest island... of all integers in that island. 1 0 0 0 1 0 1 2 2
Use of Array in Java
Use of Array in Java      ... that you can write a program on array by yourself. An array works a container... to define array is just same as we have defined an array in the program below. 
Java Array declaration
Java Array declaration In this section you will learn how to declare array in java. As we know an array is collection of single type or similar data type... = "+a[2]); System.out.println("Fourth element of array = "+a[3
Java Program
Java Program  i have a String like ABCD, my output should be as below a,bcd ab,cd abc,d a,b,cd a,bc,d ab,c,d a,b,c,d
array - Java Beginners
enter a number for 1st array: 6 enter a number for 1st array: 2 enter a number... ================================= the final array is: 1 2 3 4 5 6 7 8 9   Hi Friend, Try...array  ..how to make this program?? what is the length of 1st

Ads