write down the format of for - next
Answers
Answer:
HOPE IT'S HELPFUL ⭐!!!! THANK YOU MY FRIEND ⭐
Explanation:
Parts
Part Description
counter Required in the For statement. Numeric variable. The control variable for the loop. For more information, see Counter Argument later in this topic.
datatype Optional. Data type of counter. For more information, see Counter Argument later in this topic.
start Required. Numeric expression. The initial value of counter.
end Required. Numeric expression. The final value of counter.
step Optional. Numeric expression. The amount by which counter is incremented each time through the loop.
statements Optional. One or more statements between For and Next that run the specified number of times.
Continue For Optional. Transfers control to the next loop iteration.
Exit For Optional. Transfers control out of the For loop.
Next Required. Terminates the definition of the For loop.