top of page
VR Goggles

SEMANA 6-ESTRUCTURAS REPETITIVAS INFINITAS

#include

int main() {
int i = 1;

while (i <= 10) {
std::cout << i << " ";
i++;
}

return 0;
}

Captura de pantalla 2024-01-23 193812.png

LENGUAJE DE PROGRAMACIÃ’N

©2023 por LENGUAJE DE PROGRAMACIÒN. Creado con Wix.com

bottom of page