Computer Science, asked by sahilss0410, 9 months ago

Raju is the maths teacher in high secondary school and provided mark sheet to students.In this class room, students are arranged in the form of rows and columns. Raju needs to find the highest mark in this class. Help him to find out.

INPUT FORMAT:

The input consists of (m*n+2) integers.

The first integer corresponds to m, the number of rows in the matrix and the second integer corresponds to n, the number of columns in the matrix.

The remaining integers correspond to the elements in the matrix.

The elements are read in row-wise order, the first row first, then the second row and so on.

Assume that the maximum value of m and n is 10.

OUTPUT FORMAT:

Refer to the sample output for details.

SAMPLE INPUT & OUTPUT:

3

2

4 5

6 9

0 3

The maximum element is 9​

Answers

Answered by shahir1
2

Answer:

INPUT FORMAT

Explanation:

The input consists of (m*n+2) integers.  

The first integer corresponds to m, the number of rows in the matrix and the second integer corresponds to n, the number of columns in the matrix.  

The remaining integers correspond to the elements in the matrix.  

The elements are read in row-wise order, the first row first, then second row and so on.  

Assume that the maximum value of m and n is 10.

HOPE THIS HELPS YOU

MARK AS BRILLIANT

Answered by MoChuisle
13

Answer:

#include<iostream>

using namespace std;

int main()

{

int r,c;

cin>>r>>c;

int i,j;

int Arr[r][c];

 for(i=0;i<r;i++)

 {

   for(j=0;j<c;j++)

   {

     cin>>Arr[i][j];

   }

 }

 int Max=Arr[0][0];

for(i=0;i<r;i++)

{

  for(j=0;j<c;j++)

  {

    if(Max<Arr[i][j])

    {

      Max=Arr[i][j];

    }

  }

}

 cout<<"The maximum element is "<<Max;

 return 0;

}

Explanation:

Similar questions