首页 > 其他 > 详细

(Problem 9)Special Pythagorean triplet

时间:2014-02-11 23:25:58      阅读:358      评论:0      收藏:0      [点我收藏+]

A Pythagorean triplet is a set of three natural numbers, a bubuko.com,布布扣 b bubuko.com,布布扣 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.

bubuko.com,布布扣
#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;
}
bubuko.com,布布扣
Answer:
31875000

(Problem 9)Special Pythagorean triplet

原文:http://www.cnblogs.com/acutus/p/3544700.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!