Computer Science, asked by njlearning, 2 months ago

how to make a triangle of length 10 in qbasic​

Answers

Answered by VedantCOD69
0

Answer:

Explanation:

CLS

INPUT "enter first length"; a

INPUT "enter second length"; b

INPUT "enter third length"; c

IF a + b > c THEN

IF b + c > a THEN

IF a + c > b THEN

END IF

END IF

PRINT " these sides form triangle"

ELSE PRINT "these sides do not form triangle"

END IF

END

PLZ MARK AS BRAINLIEST

Similar questions