Program to evaluate the Sum of Elements Above and Below Main Diagonal of Matrix in CPP (C plus plus)
In this tutorial, we will learn about Program to evaluate Sum of Elements Above and Below Main Diagonal of Matrix in CPP (C plus plus).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#include<iostream> using namespace std; int main() { int array[5][5]; int i; int j; int k; int p=0; int q=0; cout<<"Please enter the size of matrix [MAX 5]:"<<endl; cin>>k; cout<<"Please enter the matrix:"<<endl; for(i=0;i<k;++i) for(j=0;j<k;++j) cin>>array[i][j]; for(i=0;i<k;++i) for(j=0;j<k;++j) if(j>i) p+=array[i][j]; else if(i>j) q+=array[i][j]; cout<<"Sum of values above the diagonal:"<<p<<endl; cout<<"Sum of values below the diagonal:"<<q<<endl; return 0; } |
Output: