TypeScript bootcamp · Lab 39

Squares 1 to n

easyFor8 minLesson: For

Read the question, write TypeScript on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Print i*i for i=1..n.

Examples

Example 1
Input
3
Output
1
4
9
Hint
  1. for loop
Show correct code

Peek only after you have tried. You can still Check your own version.

const n: number = Number(readLine());
for (let i = 1; i <= n; i++) console.log(i * i);
main.tstsc · readLine() · Ctrl + Enter
ResultIdle
Run to see output. Check grades the tests.