Advertisement
Andrey_ZoZ

Untitled

Jul 20th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. //
  2. //  main.cpp
  3. //  Test
  4. //
  5. //  Created by Andrey Zozulych on 20.07.2020.
  6. //  Copyright © 2020 Andrey Zozulych. All rights reserved.
  7. //
  8.  
  9. #include <iostream>
  10.  
  11. int main() {
  12.     // insert code here...
  13.     int num;
  14.     std::cin>>num;
  15.     int firstDigit=num/100;
  16.     num-=firstDigit*100;
  17.     int secondDigit=num/10;
  18.     num-=secondDigit*10;
  19.     num*=10;
  20.     num+=secondDigit;
  21.     num*=10;
  22.     num+=firstDigit;
  23.     std::cout<<num;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement