Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
int liczba;
cout << "Podaj liczbe: ";
cin >> liczba;
while (liczba != 0)
int cyfra = liczba % 10;
cout << cyfra;
liczba /= 10;
}
cout << endl;
return 0;
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
int liczba;
cout << "Podaj liczbe: ";
cin >> liczba;
while (liczba != 0)
{
int cyfra = liczba % 10;
cout << cyfra;
liczba /= 10;
}
cout << endl;
return 0;
}
Wyjaśnienie: