If you're seeing this message, it means we're having trouble loading external resources on our website.
Jeżeli jesteś za filtrem sieci web, prosimy, upewnij się, że domeny *.kastatic.org i *.kasandbox.org są odblokowane.
Aby się zalogować i korzystać z wszystkich funkcji Khan Academy, włącz obsługę JavaScript w Twojej przeglądarce.
n
n ← 1 REPEAT 10 TIMES { result ← n * n DISPLAY(n) n ← n + 2 }
n ← 1 REPEAT 10 TIMES { result ← n * n DISPLAY(result) n ← n + 2 }
n ← 1 REPEAT 10 TIMES { result ← n * 2 DISPLAY(result) n ← n + 2 }
n ← 1 REPEAT 10 TIMES { result ← n * n DISPLAY(result) n ← 2 }