TO forum nalezy do drago174
#include <iostream>
using namespace std;
void wypelnij1 (int *T ,const int N)
{
for (int i=N-1; i>=0; --i) //liczenie od konca tablicy
{
if (i%2==0)
T[i]=i;
else T[i]=10;
}
}
void wypisz (int *T ,const int N)
{
for (int i=0; i<N; ++i)
{
cout<<T[i]<<'\t';
cout<<endl;
}
}
void wypelnij2 (int *T ,const int N)
{
for (int i=0; i<N; ++i)
{
if (i%2==0)
T[i]=10;
else T[i]=i;
}
}
int main ()
{
const int N=10;
int T[N], A[N], B[N];
wypelnij1 (A,N);
wypisz (A,N);
wypelnij2 (B,N);
wypisz (B,N);
for (int i=0; i<N; ++i)
T[i]=A[i]+B[i];
wypisz (T,N);
return 0 ;
}
Offline