Skip to main content

How to check a number palindrome or not in c# ?

Check a number palindrome or not!
Program: 
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 num, rem, rev = 0;
            Console.WriteLine("//How to check a number palindrome or not in c# ?");
            Console.WriteLine("Enter A number :");
            num = Convert.ToInt32(Console.ReadLine());
            if (num > 0)
            {

                for (int temp = num; temp != 0; temp /= 10)
                {
                    rem = temp % 10;
                    rev = rem + (rev * 10);
                }

                if (rev == num)
                    Console.WriteLine("The number " + num + " is a palindrome number .");
                else
                    Console.WriteLine("The number " + num + " is not a palindrome number .");

            }
            else
                Console.WriteLine("Enter A valid Number :\n");

            Console.ReadKey();

        }
    }
}


Output :

//How to check a number palindrome or not in c# ?
Case 1:
           Enter A number :
           151
           The number 151 is a palindrome number .

 Case 2:
           Enter A number :
           12345
           The number 12345 is not a palindrome number .


Comments

Popular posts from this blog

How to Create Login Page with Material Design !

Material Design for web application In this article I’m going to show you how to how to apply material design in web application.  we will take  materialize CSS framework to design our login page .   Materialize CSS is free open source frontend designing framework. It provides material design.   It is like a bootstrap framework , but we can do many thing using this framework. < link href ="https://fonts.googleapis.com/icon?family=Material+Icons" rel ="stylesheet" />   < link rel ="stylesheet" href ="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" />   < script type ="text/javascript" src ="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></ script >   < script type ="text/javascript" src ="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></ s...

How to find sum of the digits of a number in c#?

Sum of the Digits of a number Program: 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 num, sum = 0;             Console .WriteLine( "Enter a number :\n" );             num = Convert .ToInt32( Console .ReadLine());             if (num > 0)             {                 for ( int temp = num; tem...