sdut 相似三角形

2021-08-07 21:37:51 字數 577 閱讀 2130

problem description

給出兩個三角形的三條邊,判斷是否相似。

input

多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三角形。(邊長小於100且無序)

output

如果相似輸出yes,如果不相似輸出no,如果三邊組不成三角形也輸出no。

example input

1 2 3 2 4 6

3 4 5 6 8 10

3 4 5 7 8 10

example output

no

yesno

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,分別代表兩個三...