top of page
LENGUAJE DE PROGRAMACIÃ’N

SEMANA 6-ESTRUCTURAS REPETITIVAS INFINITAS
#include
int main() {
int i = 1;
while (i <= 10) {
std::cout << i << " ";
i++;
}
return 0;
}

bottom of page
LENGUAJE DE PROGRAMACIÃ’N
#include
int main() {
int i = 1;
while (i <= 10) {
std::cout << i << " ";
i++;
}
return 0;
}