题解
2023-08-12 09:17:13
发布于:浙江
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
bool is_pal(int x){ //is_pal函数
int _x = 0 ,a = x;
while (a){
_x *= 10;
_x += a % 10;
a /= 10;
}
if (_x == x) //如果反转后的数等于原数
return 1;
else
return 0;
};
int main() { //主函数
int n;
cin >> n;
if (is_pal(n))
cout << "Yes";
else
cout << "No";
return 0;
}
这里空空如也
有帮助,赞一个