Computer Science, asked by yojanastha01, 5 months ago

write a program that accept the length and base of triangle and then calculate it's area.
it's urgent pls give answer fast.​

Answers

Answered by chandhimesh66
0

Answer:

FUNCTION AREA (B,H)

A=1/2 *B*H

AREA =A

END FUNCTON

CLS

INPUT "ENTER BREADTH";B

INPUT "ENTER HEIGHT";H

PRINT "AREA OF TRIANGLE";AREA(B,H)

END

Similar questions