Informática, perguntado por sidneyvieira1980, 4 meses atrás

FAÇA UM PROGRAMA QUE MOSTRE EM TELA OS 10 PRIMEIROS NÚMEROS INTEIROS.

Soluções para a tarefa

Respondido por mateus7870
0

Resposta:

#include <stdio.h>

int main() {

   for(int i = 0; i<=10; i++){

       printf("%d ", i);

   }

   return 0;

}

 

Explicação:

Perguntas interessantes