Răspuns :
Răspuns:
#include
using namespace std;
int n, ogl;
int main()
{
cin >> n;
while (n != 0)
{
ogl = ogl * 10 + n % 10;
n = n / 10;
}
cout <return 0;
}
Explicație:
cpl
Pseudocod:
start
citeste n
oglindit=0
cat timp n!=0 executa
oglindit = oglindit * 10 + n % 10
n = n / 10
scrie oglindit
sfarsit
C++:
#include <iostream>
using namespace std;
int n, og;
int main()
{
cout<<"Enter numarul n: ";
cin >> n;
while (n != 0)
{
og = og * 10 + n % 10;
n = n / 10;
}
cout << "Oglinditul este: "<< og;
return 0;
}