- 论坛徽章:
- 0
|
原帖由 liuke432 于 2008-4-17 15:53 发表 ![]()
还有,比如 20,21,29
刚刚写的, 不知道有错没得.
- #include<stdio.h>
- #include<stdlib.h>
- #include<math.h>
- #define N 1000000000
- int main()
- {
- int tmp = (int)sqrt(N);
- int count = 0;
- int a, c;
- for (a = 0; a < tmp; a++)
- {
- c = a*a + (a+1)*(a+1);
- if ((int)sqrt(c) > N)
- break;
- if ((floor(sqrt(c)) * floor(sqrt(c))) == c)
- {
- count++;
- printf("a=%d,b=%d,c=%d\n", a, a+1, (int)sqrt(c));
- }
- }
- printf("done\n");
- return 0;
- }
复制代码
结果:
a=0,b=1,c=1
a=3,b=4,c=5
a=20,b=21,c=29
a=119,b=120,c=169
a=696,b=697,c=985
a=4059,b=4060,c=5741
a=23660,b=23661,c=33461
done
real 0m0.015s
user 0m0.016s
sys 0m0.000s
[ 本帖最后由 scutan 于 2008-4-17 16:07 编辑 ] |
|