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


shawn2000100 (東華財金)

學校 : 國立東華大學
編號 : 57300
來源 : [27.53.168.5]
最後登入時間 :
2021-09-19 19:53:19
d507. 三角形的判斷 -- 板橋高中教學題 | From: [134.208.3.49] | 發表日期 : 2017-08-13 17:06

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

int main() {
int A[3];

while ( cin >> A[0] >> A[1] >> A[2] ) {
sort ( A, A + 3 );

if ( A[0] * A[0] + A[1] * A[1] == A[2] * A[2] )
cout << "right triangle" << endl;
else if ( A[0] * A[0] + A[1] * A[1] < A[2] * A[2] )
cout << "obtuse triangle" << endl;
else
cout << "acute triangle" << endl;
}

return 0;
}

 
ZeroJudge Forum