problem description
給出兩個三角形的三條邊,判斷是否相似。
input
多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三角形。(邊長小於100且無序)
output
如果相似輸出yes,如果不相似輸出no,如果三邊組不成三角形也輸出no。
example input
1 2 3 2 4 63 4 5 6 8 10
3 4 5 7 8 10
example output
noyesno
hint
author
**:#include
#include
//相似三角形的條件:
//1、任意兩邊之和大於第三邊或者任意兩邊之差小於第三邊
//2,三條邊對應的比例相等
using namespace std;
int main()
else
} else
cout<<"no" time limit 1000 ms memory limit 65536 kib problem description 給出兩個三角形的三條邊,判斷是否相似。input 多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三角形。邊長小於100且無序 output 如果相似... problem description 給出兩個三角形的三條邊,判斷是否相似。input 多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三角形。邊長小於100且無序 output 如果相似輸出yes,如果不相似輸出no,如果三邊組不成三角形也輸出no。example in... time limit 1000 ms memory limit 65536 kib submit statistic discuss problem description 給出兩個三角形的三條邊,判斷是否相似。input 多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三...相似三角形
相似三角形
相似三角形