摘要:
//判断回文数 bool palindrome(int n) { int s = n, ans = 0; while(s != 0) { ans = ans * 10 + s % 10; s = s / 10; } if(ans == n) return true; else return false; } //判断回文串 bool palindrome(char *s)... 阅读全文
摘要:
题目描述 因为151既是一个质数又是一个回文数(从左到右和从右到左是看一样的),所以 151 是回文质数。 写一个程序来找出范围[a,b](5 <= a < b <= 100,000,000)( 一亿)间的所有回文质数; 输入输出格式 输入格式: 第 1 行: 二个整数 a 和 b . 输出格式: 阅读全文