If you're seeing this message, it means we're having trouble loading external resources on our website.
If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.
To log in and use all the features of Khan Academy, please enable JavaScript in your browser.
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 }