#15072: Re:請問錯在哪裡


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
d980. 11479 - Is this the easiest problem? -- UVa11479 | From: [114.42.212.44] | 發表日期 : 2018-09-09 16:15

#include <iostream>
using namespace std;
int main(int argc, char** argv){
long long int a,b,c,d,e;
cin>>a;
for(int i=1; i<=a; i++){
cin>>b>>c>>d;
if(c>b){
e=b;
b=c;
c=e;
}
if(d>b){
e=b;
b=d;
d=e;
}
e=b-c-d;
if(e<=0){
cout<<"Case "<<i<<": Invalid"<<endl;
}
else if(a==b||b==c){
cout<<"Case "<<i<<": Equilateral"<<endl;
}
else if(a==b){
cout<<"Case "<<i<<": Isosceles"<<endl;
}
else if(a==c){
cout<<"Case "<<i<<": Isosceles"<<endl;
}
else if(c==b){
cout<<"Case "<<i<<": Isosceles"<<endl;
}
else{
cout<<"Case "<<i<<": Scalene"<<endl;
}
}
}

 
ZeroJudge Forum