Draw a flowchart that will accept the length of the base and height of a triangle and print

the area. Use the formula: Area = (base * height) / 2

3 answers

just write what you would do
ask for base
read base
ask for height
read height
area = (base * height)/2
print area
Basic program to calculate area of triangle
Follow the instructions
Step1- input the base and height
Step2- calculate the base and height
Step3- by formula (1/2*b*h)
Step4- print area