GHOST on Nostr: My first program that I have ever written! Proud # Program to find area of a triangle ...
My first program that I have ever written! Proud
# Program to find area of a triangle
def calculate_area(Width, Height):
area = Width * Height
return area
print("Calculate the area of a triangle")
Width_Input = float(input("What is the width? "))
Height_Input = float(input("What is the height? "))
area = calculate_area(Width_Input, Height_Input)
print("The area is " + str(area))
# Program to find area of a triangle
def calculate_area(Width, Height):
area = Width * Height
return area
print("Calculate the area of a triangle")
Width_Input = float(input("What is the width? "))
Height_Input = float(input("What is the height? "))
area = calculate_area(Width_Input, Height_Input)
print("The area is " + str(area))