1013. 识别三角形
1013. 识别三角形 (Standard IO)
时间限制: 1000 ms 空间限制: 262144 KB 具体限制
#include<iostream> #include<cmath> #include<cstdio> #include<algorithm> using namespace std; int tot=0; double ans; int a[4]; int main() { cin>>a[1]>>a[2]>>a[3]; sort(a+1,a+4); //cout<<a[1]<<a[2]<<a[3]; int b=a[2]; int c=a[3]; if(a[1]+b>c) { if(a[1]*a[1]+b*b==c*c) { cout<<"Right"; return 0; } else if(a[1]==b&&b==c) { cout<<"Equilateral"; return 0; } else { cout<<"General"; return 0; } } else { cout<<"NO"; } return 0; }
作者:自为风月马前卒
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。