Write the qbasic statement to multiply two variable a and b and store the result in c. increase the value of a by 10 and store in a
Answers
Answered by
6
Answer:
CLS
A=3
PRINT "A=" ;A
B=4
C=A*B
PRINT "C=" ;C
A=A+10
PRINT "NOW A=" ;A
END
Explanation:
PROOF: is the following output and program
Plzplz mark as brainliest
Attachments:
Answered by
2
Answer:
REM program to multiple two numbers
CLS
INPUT "Enter the values of A" ; A
INPUT "Enter the values of B" ; B
C = A*B
PRINT " The product of A and B is" C
END
Similar questions
Science,
5 months ago
Biology,
9 months ago
Social Sciences,
9 months ago
Math,
1 year ago
Math,
1 year ago