-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblema 3.c
70 lines (62 loc) · 1.32 KB
/
problema 3.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//Jesús Huerta Aguilar, Javier de La Luz Ruiz, Ernesto Flores Cesareo
//Programación I - Arreglo numeros primos.
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
void arreglofinal(int *primo, int x);
int main(){
int i, j, cont, x=0, primo[100];
for ( i = 1; i <= 410; i++)
{
cont = 0;
for ( j = 1; j < i; j++)
{
if (i%j == 0)
{
cont++;
}
}
if (cont < 2)
{
primo[x] = i;
x++;
}
}
arreglofinal(primo, x);
system("pause");
return 0;
}
void arreglofinal(int *primo, int x){
int i;
printf("\n Estos son los numeros primos hasta 80: \n\n");
for ( i = 0; i < x; i++)
{
printf(" %d -- [ %d ] \n", i, *(primo+i));
}
}
/* //Jesús Huerta Aguilar, Javier de La Luz Ruiz, Ernesto Flores Cesareo
int main(){
int x, cont, j, i, tabla[100];
for ( i = 1; i <= 360; i++)
{
cont=0;
for ( j = 1; j < i; j++)
{
if (i%j==0)
{
cont++;
}
}
if (cont<=2)
{
tabla[x]=i;
x++;
}
}
for ( i = 0; i < x; i++)
{
printf(" %d [ %d ]\n",x, tabla[i]);
}
system("pause");
return 0;
} */