Computer Science, asked by bookaddict7, 1 month ago

What would be the following QBASIC statement display the result of P?
LET A=225 LET B=15 LET P=A/B PRINT P​

Answers

Answered by hassanahmad7679
1

Answer:

CLS

A = 225

B = 15

P = A/B

PRINT P

END

OR ANOTHER METHOD

CLS

INPUT "ENTER THE VALUE OF A"; A

INPUT "ENTER THE VALUE OF B"; B

P = A/B

PRINT P

END

Similar questions