A Pythagorean triplet is a set of three natural numbers, a (Problem 9)Special Pythagorean triplet b (Problem 9)Special Pythagorean triplet 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


相关文章:

  • 2021-10-03
  • 2022-12-23
  • 2022-01-27
  • 2021-07-22
  • 2021-06-14
  • 2021-07-11
  • 2022-01-27
猜你喜欢
  • 2021-06-22
  • 2021-10-23
  • 2021-07-02
  • 2022-12-23
  • 2021-12-11
  • 2021-06-08
  • 2022-02-01
相关资源
相似解决方案