#include
#include
#include
using namespace std;
int main()
{
int tab[20];
int los;
int il = 0;
srand(time(0));
for(;;)
{
los = rand()%100;
if ((los % 2) == 0)
{
tab[il] = los;
il++;
}
if (il == 20)
break;
}
for(int x = 0; x < 20; x++)
{
cout << tab[x] << ",";
}
int a;
//sortowanie
for(int x = 0; x < 20; x++)
{
for(int y = 0; y < 20; y++)
{
if (tab[x] > tab[y])
{
a = tab[x];
tab[x] = tab[y];
tab[y] = a;
}
}
}
cout << "
";
for(int x = 0; x < 20; x++)
{
cout << tab[x] << ",";
}
//zad2
int tab2[20];
il = 0;
int pierwsza;
for(;;)
{
los = (rand()%1000)+2;
for(int c = 1; c <= los; c++)
{
pierwsza = 0;
for(int z = 1; z <= los; z++)
{
if ((c % z) == 0)
pierwsza++;
}
}
if (pierwsza == 2)
{
tab2[il] = los;
il++;
}
if (il == 20)
break;
}
cout << "
";
for(int x = 0; x < 20; x++)
{
cout << tab2[x] << ",";
}
//sortowanie
for(int x = 0; x < 20; x++)
{
for(int y = 0; y < 20; y++)
{
if (tab2[x] < tab2[y])
{
a = tab2[x];
tab2[x] = tab2[y];
tab2[y] = a;
}
}
}
cout << "
";
for(int x = 0; x < 20; x++)
{
cout << tab2[x] << ",";
}
return 0;
}