Odpowiedź:
SKOPIUJ TO DO KOMPILATORA I USUŃ KOMĘTAŻ:
#include <iostream>
using namespace std;
int tab[9];
int main()
{
for (int i = 0; i <= 9; i++)
cout << "Podaj " << i + 1 << " liczbe: ";
cin >> tab[i];
system("cls"); //ta część kodu wyczyszca konsole :)
if (i == 9)
for (int j = 0; j <= i; j++)
cout << "Liczba nr " << j + 1 << " to " << tab[j] << endl;
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
SKOPIUJ TO DO KOMPILATORA I USUŃ KOMĘTAŻ:
#include <iostream>
using namespace std;
int tab[9];
int main()
{
for (int i = 0; i <= 9; i++)
{
cout << "Podaj " << i + 1 << " liczbe: ";
cin >> tab[i];
system("cls"); //ta część kodu wyczyszca konsole :)
if (i == 9)
{
for (int j = 0; j <= i; j++)
{
cout << "Liczba nr " << j + 1 << " to " << tab[j] << endl;
}
}
}
}