1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <bits/stdc++.h>
using namespace std;
void firstchange(int *a, int n)
{
for(int i=0; i<n; i++)
for(int j=i; j<n; j++)
{
*(a[i][j])=*(a[i][j]) *7;
}
}
void secondchange(int *b, int n)
{
for(int i=0; i<n; i++)
for(int j=i; j<n; j++)
{
b[i][j]=b[i][j] +5;
}
}
int main()
{
ios::sync_with_stdio(false);cin.tie(0);
int n=3;
int FirstArray[n][n] = {1,2,3,4,5,6,7,8,9};
int SecondArray[n][n] = {1,2,3,4,5,6,7,8,9};
firstchange(FirstArray,n);
secondchange(SecondArray,n);
for(int i=0; i<n; i++)
{
for(int j=i; j<n; j++)
{
cout<<FirstArray[i][j]<<" ";
}
cout<<endl;
}
for(int i=0; i<n; i++)
{
for(int j=i; j<n; j++)
{
cout<<SecondArray[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
|