Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Swap first and last digits of any number

C++ Basic: Exercise-61 with Solution

Write a C++ program to swap first and last digits of any number.

Sample Solution:

C++ Code :

#include <iostream>
#include <math.h>
using namespace std;

int main()
{
    int n, first, last, sum, digits, nn, a, b;
    cout << "\n\n Find the number after swapping the first and last digits:\n";
    cout << "-------------------------------------------------------------\n";
    cout << " Input any number: ";
    cin >> n;
    digits = (int)log10(n);
    first = n / pow(10, digits);
    last = n % 10;
    a = first * (pow(10, digits));
    b = n % a;
    n = b / 10;
    nn = last * (pow(10, digits)) + (n * 10 + first);
    cout << " The number after swaping the first and last digits are: " << nn << endl;
}  

Sample Output:

Find the number after swapping the first and last digits:             
-------------------------------------------------------------          
 Input any number: 12345                                               
 The number after swaping the first and last digits are: 52341 

Flowchart:

Flowchart: Swap first and last digits of any number

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to add two binary numbers.
Next: Write a C++ program to which reads an given integer n and prints a twin prime which has the maximum size among twin primes less than or equals to n.

What is the difficulty level of this exercise?