-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblema 3.c
66 lines (66 loc) · 1.29 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
//Jesús Huerta Aguilar, Javier de La Luz Ruiz, Ernesto Flores Cesareo
//Programación I - "Programa: Lectura de numeros naturales con casos determinados"
#include <conio.h>
#include <stdio.h>
//PROTOTIPOS
int primo(int x);
void fact(int n);
void mult(int n);
//PRINCIPAL
int main(){
int n;
printf("Ingrese un numero natural (n >= 0)");
printf("\nNOTA: Para salir ingrese cualquier numero negativo.\n\n");
do{
scanf("%d",&n);
if (n >= 0){
if (primo(n) == 1){
fact(n);
}
else{
mult(n);
}
}
} while (n >= 0);
//system("PAUSE");
printf("\n\tGracias por usar nuestros servicios.");
getch();
return 0;
}
//DETECTAR PRIMOS
int primo(int x){
int i,con;
for ( i = 1; i <= x; i++)
{
if(x%i==0){
con++;
}
}
if (con > 2){
return 0;
}
else{
return 1;
}
}
//FACTORIAL
void fact(int n){
int i;
double f=1;
for (i = 1; i <= n; i++){
f = f*i;
}
printf(" -> PRIMO: %d! = %.lf\n",n,f);
}
//MULTIPLOS
void mult(int n){
int i;
printf(" -> NO PRIMO: M(%d) = {",n);
for (i = 1; i <= 1000; i++)
{
if (i%n==0){
printf("%d,",i);
}
}
printf("}\n");
}