-
Lenguaje
C
-
Descripción
Generar los primeros 50 números pares positivos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i, numero_par;
for (i=1; i<=50; i++)
{
printf ("PROCESO %d\n", i);
numero_par=i*2;
printf ("Valor de numero par: %d\n", numero_par);
putchar ('\n');
}
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i, numero_par;
for (i=1; i<=50; i++)
{
printf ("PROCESO %d\n", i);
numero_par=i*2;
printf ("Valor de numero par: %d\n", numero_par);
putchar ('\n');
}
return EXIT_SUCCESS;
}