解题思路:
注意事项:
参考代码:
#include <cstdio> #include <cstdlib> #include <iostream> #include <cmath> #include <cstring> #include <string> #include <algorithm> #include <functional> int f(int n) { int cnt = 0, m = n; while(m) { cnt++; m /= 10; } if(n ==(long long)pow(n,2)%(long long)pow(10,cnt)) { return 1; } return 0; } int main() { printf("%d", 0); for(int i = 1; i <= 200000; ++i) { if(f(i)) { printf(" %d", i); } } printf("\n"); return 0; }
0.0分
0 人评分
简单编码 (C++代码)浏览:730 |
C语言程序设计教程(第三版)课后习题8.9 (Java代码)浏览:1413 |
C语言程序设计教程(第三版)课后习题9.3 (Java代码)浏览:1025 |
【绝对值排序】 (C++代码)浏览:720 |
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码)浏览:703 |
水仙花 (C语言代码)浏览:1163 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:582 |
1124题解浏览:630 |
简单的a+b (C语言代码)浏览:857 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:765 |