Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge (snail game) | Loops
Introduction to TypeScript

bookChallenge (snail game)

Task

Congratulations, you've been hired as a developer for the indie game 'Snail Simulator.' Your goal is to design the snail's movement logic. Snails are not very fast, and each snail has its own stamina. You need to calculate the maximum distance the snail will travel if it spends 2% of its stamina for every meter it covers. Use a while loop to solve this problem and then display the result on the screen. Good luck!

123456789
let stamina: number = 100; let distance: number = 0; const staminaPerMeter: number = 2; while (stamina > ___) { stamina = ___ - ___; ___++; } console.log(`The snail got tired; it ran ${___} meters. This is a new record, congratulations!`)
copy

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 4

Spørg AI

expand

Spørg AI

ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

Awesome!

Completion rate improved to 2.94

bookChallenge (snail game)

Stryg for at vise menuen

Task

Congratulations, you've been hired as a developer for the indie game 'Snail Simulator.' Your goal is to design the snail's movement logic. Snails are not very fast, and each snail has its own stamina. You need to calculate the maximum distance the snail will travel if it spends 2% of its stamina for every meter it covers. Use a while loop to solve this problem and then display the result on the screen. Good luck!

123456789
let stamina: number = 100; let distance: number = 0; const staminaPerMeter: number = 2; while (stamina > ___) { stamina = ___ - ___; ___++; } console.log(`The snail got tired; it ran ${___} meters. This is a new record, congratulations!`)
copy

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 4
some-alt