C# Program - Reverse of a number | Digital Infotainment

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int n, rev=0, temp;
            Console.Write("Enter a number");
            n = int.Parse(Console.ReadLine());
            while(n!=0)
            {
                temp = n % 10;
                rev = rev * 10 + temp;
                n = n / 10;
            }
            Console.Write("The reverse of the number is:" + rev);
            Console.ReadKey();
        }
    }
}

/* Do leave a comment if you find this useful*/

No comments:

Post a Comment