解题思路:
注意事项:
参考代码:
#include<stdio.h>
int f(int n);
int main()
{
int i;
for(i=1000;i<=9999;i++)
if(f(i)) printf("%d ",i);
return 0;
}
int f(int n)
{
int tem,t;
tem=n/100;
t=n%100;
if((tem+t)*(tem+t)==n) return 1;
else return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:1110 |
printf基础练习2 (C语言代码)浏览:691 |
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
C语言训练-数字母 (C语言代码)浏览:648 |
母牛的故事 (C语言代码)浏览:595 |
【亲和数】 (C语言代码)浏览:628 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |
钟神赛车 (C语言代码)浏览:665 |
C二级辅导-等差数列 (C语言代码)浏览:893 |