Computer Science, asked by ishanaggar366, 1 year ago

Write QB64 statement to increase the value of A by 10 and store in A

Answers

Answered by satyammridul23379
64

rem to increase the value of A by 10

cls

input "enter the value of A in number";A

A=A+10

print A

end

Answered by SwethaHN
3

Answer:

REM program to increase value of A by 10

CLS

INPUT "Enter A" ; A

A=A + 10

PRINT A

END

Similar questions