C++怎么编写一个程序来判断一个整数是否为回文数?

日期:2019-09-18 10:32:03 人气:1

C++怎么编写一个程序来判断一个整数是否为回文数?

#include using namespace std; bool palindrome(char *str) { int h=strlen(str); for(int i=0;i<h/2;i++) { if(str[i]!=str[h-i-1]) { return false; } return true; } } int main() { char text[180]; cout<<"请
    A+
热门评论