码迷,mamicode.com
首页 > 其他好文 > 详细

Special Pythagorean triplet

时间:2017-01-17 20:03:16      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:special   style   class   bsp   ++   end   span   return   rip   

problem 9:Special Pythagorean triplet

题意:若a+b+c=1000,且a2+b2=c2,求abc

代码如下:

 1 #ifndef PRO9_H_INCLUDED
 2 #define PRO9_H_INCLUDED
 3 
 4 int solve(){
 5     for(int i=1;i<=1000;++i)
 6     for(int j=1;i+j<1000;++j)
 7         if(i*i+j*j==(1000-i-j)*(1000-i-j))
 8             return i*j*(1000-i-j);
 9 }
10 
11 #endif // PRO9_H_INCLUDED

 

Special Pythagorean triplet

标签:special   style   class   bsp   ++   end   span   return   rip   

原文地址:http://www.cnblogs.com/barrier/p/6294279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!