add index +1

This commit is contained in:
Костя 2025-06-27 13:20:23 +03:00
parent 03c74d8769
commit b0eb9c869a
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ let chisloN: number = 3;
// } // }
for(let index = 1; index <= chisloN ; ){ for(let index = 1; index <= chisloN; index = index +1){
DrawLine(index, chisloN -index); DrawLine(index, chisloN -index);
} }

File diff suppressed because one or more lines are too long