摘要: #include <stdio.h> int hw(int x) { int a=x,b=0,c; while(a>0) { b=b*10+a%10; a=a/10; } if(b==x) return 1; else return 0; } main() { int a,b,c; for(a=10 阅读全文
posted @ 2022-03-24 22:32 myrj 阅读(361) 评论(0) 推荐(0) 编辑