文章
32
粉丝
81
获赞
5
访问
25.4k
#include<bits/stdc++.h> using namespace std; int fanxushu(int i){ int b;int s=0; while(i>0){ b=i%10; s=s*10+b; i=i/10; } return s; } int main(){ int i; for(i=1000;i<=1111;i++){ if(i*9==fanxushu(i)) printf("%d\n",i); } return 0; }
登录后发布评论
暂无评论,来抢沙发