हिंदी

Write a Function Revrow(Int P[] [5], Int N, Int M) in C++ to Display the Content of a Two-dimensional Array, with Each Row Content in Reverse Order. for Example, If the Content of the Array is as Follows: - Computer Science (C++)

Advertisements
Advertisements

प्रश्न

Write a function REVROW(int P[] [5], int N, int M) in C++ to display the content of a two-dimensional array, with each row content in reverse order.

For example, if the content of the array is as follows:

15 12 56 45 51
13 91 92 87 63
11 23 61 46 81

The function should display output as

उत्तर १

void REVROW(int P[][5],int N,int M)
{
   for(int I=0; I<N; I++)
   { 
      for(int J=M­ - 1; J>=0; J­)
         cout<<P[I][J];
      cout<<endl;
   }
}
shaalaa.com

उत्तर २

void REVROW(int P[][5],int N,int M)
{
   for(int I=0; I<N; I++)
  {
      for(int J=0; J<M/2; J++)
     {
         int T = P[I][J];
         P[I][J] = P[I][M­-J-­1];
         P[I][M­-J-­1] = T;
     }
   }
   for(I=0; I<N; I++)
   {
      for(int J=0; J<M; J++)
        cout<<P[I][J];
        cout<<endl;
   }
}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2014-2015 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×