#11 | While loops | Java tutorial for beginners

Опубликовано: 30 Апрель 2026
на канале: Neil Gillies | Coding & Music
30
1

Here are the study notes for this video. Please see my pinned comment for the source code :)

// While loops allow you to repeat blocks of code again and again until a certain condition is met

// The while loop loops through a block of code as long as a specific condition remains true

// A while loop is used to repeat a given statement over and over

// It should eventually stop when the condition is no longer true (not an infinite loop)