会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Estwind
博客园
首页
新随笔
联系
管理
订阅
2018年10月8日
35.零起点学算法30——输出四位完全平方数
摘要: #include int main() { for(int i=31;i<100;i++) {int s=i*i; int a=s/1000; int b=s%1000/100; int c=s%100/10; int d=s%10; if(a==b&&c==d) printf("%d\n",s); } ...
阅读全文
posted @ 2018-10-08 23:46 Estwind
阅读(1312)
评论(0)
推荐(0)
公告