slides13ex1.py
Click here to get the file
Size
1 kB
-
File type
text/python-source
File contents
class Triangulo:
ladoA= None
ladoB= None
ladoC= None
def __init__(self, a, b, c):
self.ladoA = a
self.ladoB = b
self.ladoC = c
def calcularPerimetro(self):
return self.ladoA + self.ladoB + self.ladoC
def getMaiorLado(self):
if self.ladoA >= self.ladoB and self.ladoA >= self.ladoC:
return self.ladoA #o ladoA eh maior do que os outros 2
elif self.ladoB >= self.ladoA and self.ladoB >= self.ladoC:
return self.ladoB #o ladoB eh o maior
else: #se o maior nao eh ladoA nem ladoB, soh resta o ladoC
return self.ladoC