208k views
0 votes
Write a function (findPerimeter) that will accept 3 parameters (sideOne, sideTwo and sideThree). The function will calculate the perimeter of the triangle and print the perimeter of the triangle. The perimeter is the sum of 3 sides

1 Answer

0 votes

Answer:

def findPerimeter(sideOne, sideTwo, sideThree):

perimeter = (sideOne + sideTwo + sideThree)

print(perimeter)

sideOne = int(input())

sideTwo = int(input())

sideThree = int(input())

findPerimeter(sideOne, sideTwo, sideThree)

Step-by-step explanation:

That is the code above in Python, you didn't specify which programming language so I wrote it in python. Hope this helps!!

User Kritya
by
7.2k points