Niestety, nikt nie powie Ci czym jest FluxBB - musisz go poznać sam!
Nie jesteś zalogowany na forum.
Strony: 1
#include <iostream>
#include<cstdlib>
using namespace std;
void autor()
{
cout<<endl<<"autorem jest: Mdasdas";
}
int main()
{
int tab[10];
int i;
i=0;
while(i<=9)
{
cout<<"podaj liczbe ";
cin>>tab[i];
i=i+1;
}
i=0;
while(i<=9)
{
cout<<" "<<tab[i];
i=i+1;
}
autor();
}
[after=39]
wystwietl dane
#include <iostream>
using namespace std;
int main()
{
int tab[100];
tab[0]=1;
tab[1]=1;
tab[2]=2;
tab[3]=3;
tab[4]=1;
tab[5]=6;
tab[6]=7;
tab[7]=10;
tab[8]=21;
tab[9]=11;
tab[10]=434;
cout << "tab zawiera takie dane:";
cout<<" " << tab[ 0 ];
cout<<" "<< tab[ 1 ];
cout<<" "<< tab[ 2 ];
cout<<" "<< tab[ 3 ];
cout<<" "<< tab[ 4 ];
cout<<" "<< tab[ 5 ];
cout<<" "<< tab[ 6 ];
cout<<" "<< tab[ 7 ];
cout<<" "<< tab[ 8 ];
cout<<" "<< tab[ 9 ];
cout<<" "<< tab[ 10 ];
}
Offline
Strony: 1
[ Wygenerowano w 0.014 sekund, wykonano 8 zapytań - Pamięć użyta: 480.48 kB (Maksimum: 531.73 kB) ]