您的位置:首页 > 编程语言 > Go语言

(Problem 9)Special Pythagorean triplet

2013-07-24 15:55 267 查看
A Pythagorean triplet is a set of three natural numbers, a

b

c, for which,

a2 + b2 = c2
For example, 32 + 42 = 9 + 16 = 25 = 52.

There exists exactly one Pythagorean triplet for which a + b + c = 1000.

Find the product abc.

#include<stdio.h>
#include<math.h>
#include<string.h>
#include<ctype.h>
#include<stdlib.h>
#include<stdbool.h>

void show()
{
int a,b,c;
for(a=1; a<333; a++)
{
for(c=333; c<500; c++)
{
b=1000-a-c;
if(a*a+b*b==c*c)
{
printf("%d\n",a*b*c);
return;
}
}
}
}

int main()
{
show();
return 0;
}


Answer:
31875000
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: