解题思路: 用三个循环代表a,b,c三条边,寻找满足条件的三边 注意事项: 注意把约束条件写好
参考代码:
#include<iostream> using namespace std; int main() { //freopen("data.out.txt","w",stdout); for(int a=1;a<=1000;a++) { for(int b=a;b<=1000;b++) { for(int c=b;c<=1000;c++) { if(a*a+b*b==c*c&&a+b+c<=1000) cout<<a<<" "<<b<<" "<<c<<endl; } } } return 0; }
0.0分
3 人评分