23.08.2022, 06:59
while i<3 do loop works only once because i is not reset in the for loop. You can use for i = 1, 2 do instead of while. In this case i is a local variable so there's no need to declare it beforehand.
calculation with table
|
« Next Oldest | Next Newest »
|
Messages In This Thread |
calculation with table - by pioneersteffen - 22.08.2022, 06:32
RE: calculation with table - by admin - 23.08.2022, 06:59
RE: calculation with table - by pioneersteffen - 23.08.2022, 18:28
|