#21439: 求幫為什麼WA line 4


louis208829@gmail.com (xLouisx)

學校 : 國立內壢高級中學
編號 : 106587
來源 : [203.68.75.102]
最後登入時間 :
2020-07-09 15:28:48
b884. 電腦教室的傑克 | From: [101.137.34.225] | 發表日期 : 2020-06-02 11:42

#include <iostream>
#include <cmath>
using namespace std;
int main() {
int n=0;
cin >> n;
for(int i=0;i<n;i++){
float x=0,y=0;
cin >>x>>y; float r=sqrt(x+y); float yee=100-r*r;

if(yee<=30){
cout <<"sad!"<<endl;
}
else if(yee<=60){
cout <<"hmm~~"<<endl;}
else if(yee<=90){
cout<<"Happyyummy"<<endl;
}
else{
cout<<"evil!!"<<endl;
}
}
}
 
ZeroJudge Forum