HomeCSharpC# Program to Display the Reverse of a Number

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

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...