Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Loop For | Introducción al Flujo de Programas
Introducción a C++
course content

Contenido del Curso

Introducción a C++

Loop For

El loop for es más complejo que los demás loops y consta de tres partes. Estructura del loop for:

  • Counter (Contador);
  • Exit condition (Condición de salida);
  • Loop expression (Expresión de loop).
cpp

main

  • int counter = 0: iteration counter;
  • counter++: For each iteration, 1 will be added to the counter variable to mark the passage of the loop;
  • counter <= 5: loop termination condition. The loop will continue if the counter variable is less than or equal to 5.

¿Cuántas iteraciones realizará este bucle?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 4. Capítulo 6
We're sorry to hear that something went wrong. What happened?
some-alt