相似三角形

2021-08-31 16:10:15 字數 839 閱讀 3709

time limit: 1000 ms memory limit: 65536 kib

problem description

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

input

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

output

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

sample input

1 2 3 2 4 6

3 4 5 6 8 10

3 4 5 7 8 10

sample output

noyes

no

#include

void

order

(int a,

int n)

;//將三角形的三邊排好序

intjudge

(int a,

int b,

int c)

;//判斷是否能構成三角形

intmain()

else

printf

("no\n");

}return0;

}void

order

(int a,

int n)

}int

judge

(int a,

int b,

int c)

相似三角形

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

sdut 相似三角形

problem description 給出兩個三角形的三條邊,判斷是否相似。input 多組資料,給出6正個整數,a1,b1,c1,a2,b2,c2,分別代表兩個三角形。邊長小於100且無序 output 如果相似輸出yes,如果不相似輸出no,如果三邊組不成三角形也輸出no。example in...