1 of 9

Slide Notes

DownloadGo Live

Javaficadas

Published on Nov 19, 2015

No Description

PRESENTATION OUTLINE

Javaficadas

Estructuras de control
Photo by atomicshark

Características

- Características de los ciclos
Photo by VinothChandar

IF

Photo by harold.lloyd

switch

Photo by ecstaticist

For

A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.

A for loop is useful when you know how many times a task is to be repeated.
Photo by vgm8383

While

A while loop is a control structure that allows you to repeat a task a certain number of times.

When executing, if the boolean_expression result is true, then the actions inside the loop will be executed. This will continue as long as the expression result is true.

Here, key point of the while loop is that the loop might not ever run. When the expression is tested and the result is false, the loop body will be skipped and the first statement after the while loop will be executed.
Photo by *~Dawn~*

Do While

A do...while loop is similar to a while loop, except that a do...while loop is guaranteed to execute at least one time.

Notice that the Boolean expression appears at the end of the loop, so the statements in the loop execute once before the Boolean is tested.

If the Boolean expression is true, the flow of control jumps back up to do, and the statements in the loop execute again. This process repeats until the Boolean expression is false.
Photo by Magnate Lab

Ejercicios

Gracias