Read the question, write TypeScript on the right, then Run or Check.
QuestionHint and solution stay closed until you open them
Read n. Print numbers 1..n each on a line, skipping multiples of 3.
Input. One integer n.
Output. Selected numbers, one per line.
Examples
Input
6
Output
1 2 4 5
Hint
- if (i % 3 === 0) continue;
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++) {
if (i % 3 === 0) continue;
console.log(i);
}
main.tstsc · readLine() · Ctrl + Enter
ResultIdle
Run to see output. Check grades the tests.