摘要: 没什么动力刷刷水题。。 Palindromic SquaresRob Kolstad Palindromes are numbers that read the same forwards as backwards.The number 12321 is a typical palindrome. Given a number base B (2 12 #include 13 #include 14 using namespace std;15 16 bool judge(int b,int base)17 {18 19 int tmp[2000];20 int a=b*b;2... 阅读全文
posted @ 2013-12-10 20:16 doubleshik 阅读(213) 评论(0) 推荐(0) 编辑