解题思路:
注意事项:
参考代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define int long long
using namespace std;
signed main(){
cout<<0<<" ";
for(int i=1;i<=200000;i++){
int temp=i,temp1=i*i,flag=0;
while(temp){
if(temp%10!=temp1%10){
flag=1;
break;
}
temp/=10;
temp1/=10;
}
if(!flag){
cout<<i<<" ";
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1045 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:590 |
C语言程序设计教程(第三版)课后习题8.2 (Java代码)浏览:2287 |
Tom数 (C++代码)浏览:869 |
震宇大神的杀毒软件 (C++代码)浏览:1173 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)for循环浏览:1178 |
【亲和数】 (C语言代码)浏览:908 |
输出正反三角形 (C语言代码)浏览:859 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:674 |
WU-输入输出格式练习 (C++代码)浏览:1133 |