C++ Program to Reverse a Number

In this article, you will learn and get code to reverse a number entered by a user at run-time using a C++ program. Since there are many ways to create a C++ program to reverse a number, we've used some famous methods to do the task as given below:

These are the most common and popular ways to approach reversing a given number in C++. Let's start with the first way to find and print the reverse of a number.

Reverse a number using the while loop in C++

To reverse a number in C++ programming, you have to ask the user to enter a number. Now find the reverse of that number, and then print its reverse on output as shown in the program given below:

The question is: write a program in C++ to reverse a number. Here is its answer:

#include<iostream>
using namespace std;
int main()
{
    int num, rem, rev=0;
    cout<<"Enter the Number: ";
    cin>>num;
    while(num!=0)
    {
        rem = num%10;
        rev = rem + (rev*10);
        num = num/10;
    }
    cout<<"\nReverse = "<<rev;
    cout<<endl;
    return 0;
}

This program was built and runs under the Code::Blocks IDE. Here is its sample run:

C++ program to reverse number

Now supply the number, say 123, as input and press the ENTER key to reverse it and print it as shown in the snapshot given below:

reverse a number c++

The dry run of the above program with user input 123 goes like this:

Reverse a Number using a for Loop in C++

This program is created using the for loop instead of the while loop. The rest of the program is identical to the previous one:

#include<iostream>
using namespace std;
int main()
{
    int num, rem, rev;
    cout<<"Enter the Number: ";
    cin>>num;
    for(rev=0; num!=0; num=num/10)
    {
        rem = num%10;
        rev = rem + (rev*10);
    }
    cout<<"\nReverse = "<<rev;
    cout<<endl;
    return 0;
}

Here is its sample run with user input, 23056:

reverse number using for loop c++

Reverse a Number Without Using the Loop in C++

This program doesn't use any type of loop, neither for nor while, to reverse a number. Let's have a look at the program first; its explanation is given later on:

#include<iostream>
using namespace std;
int main()
{
    int num, rem, rev=0;
    cout<<"Enter the Number: ";
    cin>>num;
    CODESCRACKER:
        rem = num%10;
        rev = (rev*10) + rem;
        num = num/10;
        if(num!=0)
            goto CODESCRACKER;
    cout<<"\nReverse = "<<rev;
    cout<<endl;
    return 0;
}

This program produces the same output as the previous program.

Note: A label named CODESCRACKER is created, on which all three statements for reversing a number are written. We used if for the condition (to check) after executing all three statements in the label CODESCRACKER. That is, if the condition evaluates to true, restart the program flow from the label using the go keyword followed by the label name.

Reverse a Number using a User-Defined Function in C++

This program uses a user-defined function named rev() to reverse a number. It takes a number as its argument and returns its reverse.

#include<iostream>
using namespace std;
int rev(int);
int main()
{
    int num, r;
    cout<<"Enter the Number: ";
    cin>>num;
    r = rev(num);
    cout<<"\nReverse = "<<r;
    cout<<endl;
    return 0;
}
int rev(int n)
{
    int rem, res=0;
    while(n!=0)
    {
        rem = n%10;
        res = (res*10) + rem;
        n = n/10;
    }
    return res;
}

In C++, use the Class to reverse a number

This program uses classes and objects, an object-oriented feature of C++, to reverse a number given by the user:

#include<iostream>
using namespace std;
class CodesCracker
{
    public:
        int rev(int);
};
int CodesCracker::rev(int n)
{
    int rem, res=0;
    while(n!=0)
    {
        rem = n%10;
        res = (res*10) + rem;
        n = n/10;
    }
    return res;
}
int main()
{
    int num, r;
    CodesCracker c;
    cout<<"Enter the Number: ";
    cin>>num;
    r = c.rev(num);
    cout<<"\nReverse = "<<r;
    cout<<endl;
    return 0;
}

Note: An object c of type CodesCracker is created inside the main() function. Now, using object c, we've called the member function of the class CodesCracker just like normal function calls using the dot (.) operator. The function rev() also returns the reverse of a number that is passed as its argument, just like the previous program's normal function.

Reverse a Number using an Array in C++

This is the last program on reversing a number. This program is created using an array. That is, each digit of the number gets initialized as an element of the array. And using an array, we've printed the reverse of the given number:

#include<iostream>
using namespace std;
int main()
{
    int num, rem, arr[10], i=0, tot=0;
    cout<<"Enter the Number: ";
    cin>>num;
    while(num!=0)
    {
        rem = num%10;
        arr[i] = rem;
        num = num/10;
        i++;
        tot++;
    }
    cout<<"\nReverse = ";
    for(i=0; i<tot; i++)
        cout<<arr[i];
    cout<<endl;
    return 0;
}

The same program in different languages

C++ Quiz


« Previous Program Next Program »


Liked this post? Share it!