| |
|
#1
| ||||
| ||||
| Program to find the sum of either of the diagonals of a 4 x 4 matrix #include <iostream.h> #include <conio.h> void main() { clrscr(); int x; int A[4][4],sum=0; //Reading the matrix. cout << "Enter the elements of the matrix : " << endl; for(int y=0;y<4;y++) for (int x=0;x<4;x++) { cout << "Element " << x+1 << ", " << y+1 << " : "; cin>>A[x][y]; } //Sum of either of the diagonal elements. for(x=0;x<4;x++) for(y=0;y<4;y++) if(x==y) sum+=A[x][y]; else if(y==4-(1+1)); sum+=A[x][y]; cout << "Sum of either of the diagonal elements is : " << sum; getch(); } This program takes in the elements A[x][y] of the 4 x 4 matrix as a screen input from the user. It then calculates the sum of either of its diagonals and outputs it using the 'cout' command. Sample Input 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Sample Output Sum of either of the diagonal elements is : 34
__________________ ![]() |
![]() |
| Tags |
| diagonals, find, matrix, program, sum |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A Program to find number in an array | JuNaiDiQbaL | Object Oriented Programming | 0 | 06-05-2011 10:32 PM |
| Program to find the sum of each row & column of a matrix of size n x m and if matrix is square, find the sum of the diagonals | bonfire | Object Oriented Programming | 0 | 09-03-2011 12:01 AM |
| Taking transpose of a matrix program code: implementation of 2 dimensional arrays | taha khan | Visual Programming | 0 | 10-12-2009 11:15 PM |
| Copying One Matrix into the other program | taha khan | Visual Programming | 0 | 10-12-2009 11:12 PM |
| Q2:find maximum element in a matrix of 2x2 | shmsa | Visual Programming | 0 | 06-12-2009 04:56 PM |