Sunday 8 April 2012

11).Check Whether a Given Number is PALINDROME.

#include<conio.h>
#include<iostream.h>
void main()
{
    clrscr();
    int N ,a,rev=0;
    cout<<"Enter The Number:  " ;
    cin>>N;
    int temp;
    temp=N;
    while(temp>=1)
    {
      a=temp%10;
      rev=rev*10+a;
      temp=temp/10;

    }
      cout<< "The Reverse Number  is :  "<<rev<<"\n" ;
   if(N==rev)

      {
       cout<<"The Number is Palindrome ";

      }
     else
     {
        cout<<"The Number is not Palindrome";
     }
       getch();

}

No comments:

Post a Comment

Write a program which reads a set of integers into an integer array and then prints "YES"if all of them are same otherwise print "NO".

#include<stdio.h> int main() { int a[10],M=0,i,n; printf("enter a value for n\n"); scanf("%d",&n); fo...