-
Notifications
You must be signed in to change notification settings - Fork 0
/
Numero_primo.c
73 lines (63 loc) · 1.4 KB
/
Numero_primo.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
71
72
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
int main(void);
int Primo(unsigned long int numero);
int Suma_digitos(int numero, char Buff[]);
int Primo(unsigned long int numero){
int divisor = 1;
unsigned int i = 7;
char Buff[10000];
sprintf(Buff, "%lu", numero);
int Comp_3 = 0;
int Comp_5 = 0;
if (numero % 2 == 0){
printf("2\n");
numero = numero / 2;
}
if(Suma_digitos(numero, Buff) % 3 == 0){
printf("3\n");
numero = numero / 3;
}
if((Buff[strlen(Buff) - 1] - '0') == 5 || (Buff[strlen(Buff) - 1] - '0') == 0){
printf("5\n");
numero = numero / 5;
}
while (numero > 1 && i <= (unsigned int) sqrtl((long double)numero)){
if (numero % 2 == 0){
printf("2\n");
numero = numero / 2;
}
if(Suma_digitos(numero, Buff) % 3 == 0){
printf("3\n");
numero = numero / 3;
}
if((Buff[strlen(Buff) - 1] - '0') == 5 || (Buff[strlen(Buff) - 1] - '0') == 0){
printf("5\n");
numero = numero / 5;
}
for (i = 7; i < (unsigned int) sqrtl((long double)numero); i += 2){
if (numero % i == 0){
printf("%d\n", i);
numero = numero/i;
break;
}
}
}
return numero;
}
int Suma_digitos(int numero, char Buffer[]){
int suma = 0;
for (int i = 0; i < strlen(Buffer); i++){
suma += (Buffer[i] - '0');
}
return suma;
}
int main(void){
int num;
scanf("%d", &num);
int resto = Primo(num);
printf("Resto = %d\n", resto);
return 0;
}