题解
2023-04-29 17:21:07
发布于:上海
454阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int n;
cin>>n;
for (int i = 1; i <= n; ++i) {
int x = 0;
int s = i;
while(s>0){
x = x*10+s%10;
s = s/10;
}if(x==i){
cout<<i<<endl;
}
}
return 0;
}
全部评论 2
大佬果然是大佬
2023-08-06 来自 浙江
0无处不在啊,我们考试题目都做
2023-08-05 来自 浙江
0
有帮助,赞一个