IT - While Loops (Lesson)

APCompSci_LessonTopBanner.png

While Loops

Introduction

Many times, in programming it is necessary to repeat a segment of code multiple times. It would be very tedious to write lines of code repeatedly and it would not be very efficient. Loops allow you to repeat segments of code many times.

while loops are indefinite loops because they do not have a predetermined number of iterations. A while Loop will keep iterating until the boolean condition that it evaluates is false.

while Loops

while (/*boolean expression*/)
{
//body
}  

Within the body, there needs to be something that would cause the boolean expression to become false or the result would be an infinite loop. An infinite loop is a loop that keeps going forever.

Predict the output of the following loop:

int i = 9;
while (i < 18)
{
System.out.print (i + " ") ;
i += 2;
} 

 Output:

9  11  13  15  17

 

Sentinel Value

Some while loops will contain a sentinel value. The sentinel value, often -1 or -999, is a value that a user can enter to stop the loop. For example, if you were creating a program where users were entering student grades, the program might ask users to enter -1 when they were finished. The boolean expression would be looking for a grade that was obviously greater than or equal to zero so a negative value would stop the loop.

BookIcon.png Click on "Runestone Academy" below to open the required reading that is listed.

Runestone Academy: AP CSA – Java Review Links to an external site.:

READ: 7.2 – while Loops

BookIcon.png Click on "Introduction to Computer Science Using Java" below to open the required reading that is listed.

Introduction to Computer Science Using Java Links to an external site.:

READ: Chapter 19: Loops and the while statement

Chapter 20: Counting Loops

Chapter 31: Increment, Decrement, and Assignment Operators

Complete the quizzes and review for practice.

READ: 5 Steps to a 5:

Concept 0

Concept 1

Phrase Editor Free Response Video

Click below to watch the Phrase Editor Free Response Video.

 

while Loop Puzzle

Click below to begin the while Loop Puzzle activity. Click the grey arrow on the bottom right to advance the slide.

 

Practice Icon Practice-It! Self-Check

APCompSci_LessonBottomBanner.pngIMAGES CREATED BY GAVS