易百教程

写一个程序来检查C语言编程中的调色板数量?

参考实现代码如下:

#include<stdio.h>    
#include<conio.h>    
main()    
{    
    int n,r,sum=0,temp;    
    clrscr();    
    printf("enter the number=");    
    scanf("%d",&n);    
    temp=n;    
    while(n>0)    
    {    
        r=n%10;    
        sum=(sum*10)+r;    
        n=n/10;    
    }    
    if(temp==sum)    
        printf("palindrome number ");    
    else    
        printf("not palindrome");    
    getch();    
}