给你三角形的三条边,你能告诉我它是哪种三角形吗?
如果是直角三角形,请输出“good”。如果是等腰三角形,请输出“perfect”。否则,请输出“just a triangle”。
题目保证输入数据合法。
标签:std close 题目 -- ide == style triangle ace
4
3 4 5
2 2 3
1 4 4
4 6 3
good perfect perfect just a triangle
1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int n,a,b,c; 6 cin >> n; 7 while(n--) 8 { 9 cin >> a >> b >> c; 10 if(a*a+b*b==c*c||b*b+c*c==a*a||c*c+a*a==b*b) 11 cout <<"good"<<endl; 12 else if(a==b||a==c||b==c) 13 cout<<"perfect"<<endl; 14 else cout<<"just a triangle"<<endl; 15 } 16 return 0; 17 }
标签:std close 题目 -- ide == style triangle ace
原文地址:https://www.cnblogs.com/qing123tian/p/11107490.html