vsonia2004

Oglinditul

Nov 18th, 2019
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int x,ogl;
  6. cin>>x;
  7. ogl=0;
  8. while(x!=0)
  9. {
  10. ogl=ogl*10+x%10;
  11. x=x/10;
  12. }
  13. cout<<ogl;
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment