-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex042.py
18 lines (18 loc) · 849 Bytes
/
ex042.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Refaça o DESAFIO 35 dos triângulos, acrescentando o recurso de mostrar que tipo de triângulo será formado:
# EQUILÁTERO: todos os lados iguais
# ISÓSCELES: dois lados iguais, um diferente
# ESCALENO: todos os lados diferentes
print('========================\nANALISADOR DE TRIAGULOS\n========================')
r1 = float(input('Digite o primeiro segmento: '))
r2 = float(input('Digite o segundo segmento: '))
r3 = float(input('Digite o terceiro segmento: '))
if r1 < r2+r3 and r2 < r1+r3 and r3 < r1+r2:
print('Os segmentos acima PODEM FORMAR um triângulo!')
if r1 == r2 == r3:
print('Esse triâgulo é EQUILÁTERO!')
elif r1 != r2 != r3 != r1:
print('Esse triâgulo é ESCALENO!')
else:
print('Esse triângulo é ISÓSCELES!')
else:
print('Os segmentos acima NÃO PODEM formar um triângulo!')