Napisz program w DEV C++, Utworzyć tablicę n-elementową zawierające nastepujące elementy:
1). 1,1,2,1,2,3,1,2,3,4,1,2,3,4,5,1,2,3,4,5,6......
2). 1,1,1,2,4,8,3,9,27,4,16,64,5,25,125...... Dam naj
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
wprowadzasz liczby z klawiatury, to jest główny program:
int n;
int tab[n];
cout<<"Jaka wielkosc tabeli?"<<endl;
cin>>n;
cout<<"Wprowadz liczby:"<<endl;
for (int i=0;i<n;i++)
cin>>tab[i];
cout<<endl;
for (int i=0;i<n;i++)
cout<<tab[i]<<endl;