C# Console

Reverse an Integer in C#

In this program you will learn how to reverse an integer number in C# language. The program takes the number by the user, then displays the reversed number on the screen.

For example, if the user enters 678 as input, 876 is displayed as output. We use the mod(%) operator in the program to get the digits of an integer.

C# Program Code:

 

Output:

 

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.