摘要: C语言求回文质数 /* * 回文质数 */ #include <stdio.h> #include <math.h> int pdhw(long n) { long sum = 0,tmp = n; while(n){ sum*=10; sum+=n%10; n/=10; } return (sum 阅读全文
posted @ 2021-07-15 00:41 Apull 阅读(11) 评论(0) 推荐(0)