解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h> using namespace std; int f(int a) { if(a==(int)sqrt(a)*(int)sqrt(a)) return 1; return 0; } void dfs(int n,int s) { int x=n%s; int y=n/s; if(y<1||x>=n) { return ; } if(f(x)&&f(y)&&x!=0&&y!=0) { cout<<n<<endl; return ; } else ; dfs(n,s*10); } int main() { int a,b; cin>>a>>b; for(int i=a;i<=b;i++) { if(f(i)) dfs(i,10); } return 0; }
0.0分
0 人评分
Minesweeper (C语言代码)浏览:856 |
点我有惊喜!你懂得!浏览:1417 |
【回文数(二)】 (C++代码)浏览:932 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:912 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
wu-理财计划 (C++代码)浏览:907 |
【蟠桃记】 (C语言代码)浏览:1084 |
出圈】指针malloc版浏览:377 |
小O的数字 (C++代码)浏览:806 |
C语言训练-"水仙花数"问题2 (C语言代码)浏览:631 |