With a while loop
:
n = 1
while n <= (Factor+1):
# block of code
n = n + 1
or as @Thierry Lathuille said, with for-loop
:
for n in range(1, Factor + 1):
# block of code
2
solved Pseudocode Not Understand Line
With a while loop
:
n = 1
while n <= (Factor+1):
# block of code
n = n + 1
or as @Thierry Lathuille said, with for-loop
:
for n in range(1, Factor + 1):
# block of code
2
solved Pseudocode Not Understand Line