Computer Science, asked by ourphoto416, 3 months ago

write a program in QBASIC that calculates and displays total price of 126 pens if a pen costs Rs53

Answers

Answered by atrs7391
3

CLS

CostOfOnePen = 53

NumberOfPens = 126

PRINT "TOTAL COST OF PEN = Rs ";CostOfOnePen*NumberOfPens

END

Similar questions