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; }