Computer Science, asked by krishna15326, 5 months ago

which variable stored the sum of the numbers entered during the execution of a loop . plz answer soon​

Answers

Answered by shreyamishra8374
6

Answer:

The variable used in the loop condition is the number i, which you use to count the integers from 1 to 10.

Explanation:

Answered by rknashikkar
0

Answer:

Explanation: REM CALCULATE SUM OF 10 NUMBERS

CLS

SUM=0

FOR I=1 TO 10

INPUT N

SUM = SUM+N

NEXT I

PRINT SUM

END

Similar questions