C# Program to Display the Reverse of a Number

Introduction

This program in C# developed using .NET Framework , C# and Visual Studio  will demonstrate how to get the reverse of a number and display it in the console window of the Visual Studio.

For example , if the input number is 1234 , the display output will be 4321.

C# Program to  Display the Reverse of a Number

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace GinktageConsoleApp
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            int input;
            int result = 0, temp;
            Console.WriteLine("Enter the Number : ");
            input = int.Parse(Console.ReadLine());
            while (input != 0)
            {
                result = result * 10;
                temp = input % 10;
                result = result + temp;
                input = input / 10;
            }

            Console.WriteLine("Reverse of the Number is " + result);

            Console.ReadLine();
        }
    }
}

Output

Enter the Number :
1234
Reverse of the Number is 4321

image

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...