#12290: C++ 簡易參考解答


shawn2000100 (東華財金)

學校 : 國立東華大學
編號 : 57300
來源 : [27.53.168.5]
最後登入時間 :
2021-09-19 19:53:19
b884. 電腦教室的傑克 | From: [124.9.164.223] | 發表日期 : 2017-06-27 15:51

#include <iostream>
#include <cmath>
using namespace std;


int main ( ) {
double n, x, y, r, yee;
while ( cin >> n ) {
for ( int i = 0; i < n; i++ ) {
cin >> x >> y;
r = sqrt ( ( x - 0 ) + ( y - 0 ) );
yee = 100 - r * r;
if ( yee > 0 && yee <= 30 )
cout << "sad!" << endl;
else if ( yee > 30 && yee <= 60 )
cout << "hmm~~" << endl;
else if ( yee > 60 && yee < 100 )
cout << "Happyyummy" << endl;
else
cout << "evil!!" << endl;
}
}
}

 
ZeroJudge Forum