C++ Program to Find Highest and Lowest Element of a Matrix

Find Highest and Lowest Element of a Matrix

Here you will get and learn the example code of C++ program to find highest and lowest element of a matrix.

Example of C++ Program to Find Highest and Lowest Element of a Matrix

Output

Input No of Rows & Columns (max : 5,5) :3
3

Input the Elements of Matrix : 5
3
4
12
43
87
65
34
9

Highest Number is :87
Lowest Number is :3

 

 

Other Similar Programs

Matrix Addition in C++

Matrix Subtraction in C++

Matrix Multiplication in C++

Transpose of a Matrix in C++

 

 

Check out our other C++ programming Examples

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top