Computer Science, asked by Sengchoop, 1 year ago

Increase the value of A by 10 and store in A​

Answers

Answered by nishant203
7

This actually means

A=A+10.

Answered by ashasharma27jan
3

Explanation:

REM program to increase value of A by 10

CLS

INPUT "Enter A" ; A

A=A + 10

PRINT A

END

Similar questions