PILNE potrzebuje dowolny program zawierajacy tablice jednowymiarowa czteroelementowa w turbo c lub w dev naprawde pilne
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
int main()
{
int *tab = new int[4];
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int tab[4];
for (int i=1; i<=4; i++)
{
tab[i-1]=i*i*i*i;
cout << tab[i-1] << " ";
}
return 0;
}