#11232: 24245433


35133732 (TW藍風●w●)

學校 : 臺北市私立延平高級中學
編號 : 54467
來源 : [203.72.178.252]
最後登入時間 :
2016-08-12 14:06:31
d236. 畢氏的定理 -- Project Euler | From: [203.72.178.252] | 發表日期 : 2016-08-02 14:48

#include<iostream>
#include<cmath>
#include<stdlib.h>
using namespace std;
main()
{
int a,b,c;
for(a=1 ;a<999 ;a++)
 {
  for(b=a ;b<(999-a);b++)
  {
   if(a+b>500)
   {
    int c=(int) sqrt(a*a+b*b);
    if(c*c==a*a+b*b && a+b+c==1000)
    {cout<<a*b*c<<endl;break;}
   }
  }
 }
return 0;
}

 
ZeroJudge Forum