Debug the following program: (2)
REM TO INPUT THREE NUMBERS AND FIND THEIR SUM
CLRS
INPUT “Enter first number” A
INPUT “Enter second number”; B
PRINT “Enter third number”; C
S = A+B+C
PRINT “Sum of three numbers=”; SUM
END
Answers
Answered by
0
So if I input
A=3
B=1
C=5
Output will be
9
A=3
B=1
C=5
Output will be
9
Similar questions