毕达哥拉斯三元组是三个自然数的集合,a < b < c,其中,a 2 + b 2 = c 2
例如,3 2 + 4 2 = 9 + 16 = 25 = 5 2。
恰好存在一个毕达哥拉斯三元组,其 a + b + c = 1000。求积 abc。
来源:http ://projecteuler.net/index.php?section=problems&id=9
我试过但不知道我的代码哪里出错了。这是我在 C 中的代码:
#include <math.h>
#include <stdio.h>
#include <conio.h>
void main()
{
int a=0, b=0, c=0;
int i;
for (a = 0; a<=1000; a++)
{
for (b = 0; b<=1000; b++)
{
for (c = 0; c<=1000; c++)
{
if ((a^(2) + b^(2) == c^(2)) && ((a+b+c) ==1000)))
printf("a=%d, b=%d, c=%d",a,b,c);
}
}
}
getch();
}