how to write program in cpp find the sum of either of the diagonals of a 4 x 4 matrix

Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write program in cpp find the sum of either of the diagonals of a 4 x 4 matrix .So let’s go to our topic

#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.
INPUT :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
OUTPUT :
Sum of either of the diagonal elements is : 34

Related Post:-

Predict the output of following C++ program in cpp

Print 1 to 100 in C++, without loop and recursion

Factorial Using Loop Example Program In C++

bfs algorithm in data structure (BFS)

if..else Statement Example Program In C++

For Loop Example Program In C++

Program to find the sum of each row & column of a matrix of size n x m andif matrix is square, find the sum of the diagonals also.

 tudo app using html and css javascript

how to create age calculator in html project

how to make toast in html css and javascript

how to make copy to clipboard in javascript

how to create email validation in javascript

So I hope that you learn about the this program And if you have any more queries about progrmming ,web Devlopment ,tech,computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co .

Leave a Comment