Computer Science, asked by Skeshri520, 11 months ago

The base and height of a triangle are 15 CM and 10 CM respectively write a program in QBASIC to calculate the area of the triangle

Answers

Answered by priyanshu6969
10

Answer:

#QBASIC

Explanation:

A = 10

B = 15

C = 0.5*A*B

PRINT "AREA ";C

END

Answered by thestudyroom
3

Answer:

75 cm ^ 2

Explanation:

A = 10 cm

B = 15 cm

C = 1/2*A*B

PRINT "AREA" ; C

END

PLEASE MARK AS BRAINLIEST ANSWER

Similar questions