👤

Pentru un n dat construiti urmatoarea matrice:
1 1 1 1 1
1 2 2 2 2
1 2 3 3 3
1 2 3 4 4
1 2 3 4 5

(Exemplul este pentru n=5).

VA ROG MULT, NU IMI IESE SI CHIAR NU IMI DAU SEAMA CUM S-AR PUTEA REZOLVA! DAU MULTE PUNCTE!!


Răspuns :

Răspuns:

#include <iostream>

using namespace std;

int main()

{

   int n,i,j;

   cin >> n;

   cout << "matricea rezultat:" << endl;

   for (i=1; i<=n; i++)

   {

       for (j=1; j<=n; j++)

       {

           if (j<i) cout << j << " ";

           else cout << i << " ";

       }

       cout << endl;

   }

   return 0;

}

Explicație: