-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1Q2.c
103 lines (95 loc) · 1.77 KB
/
1Q2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
struct lista
{
double x;
struct lista * prox;
};
typedef struct lista Lista;
struct pilha
{
Lista * prim;
};
typedef struct pilha Pilha;
Pilha * pilha_cria(void)
{
Pilha* p = (Pilha*)malloc(sizeof (Pilha));
p->prim = NULL;
return p;
}
void pilha_insere (Pilha* p, double dado)
{
Lista* n = (Lista*)malloc(sizeof(Lista));
n -> x = dado;
n-> prox = p -> prim;
p -> prim = n;
}
int pilha_libera(Pilha*p)
{
Lista* q = p->prim;
while (q != NULL)
{
Lista* t = q->prox;
free(q);
q =t;
}
free(p);
}
void pilha_imprime(Pilha *p)
{
Lista*q;
if ( p != NULL)
for ( q = p->prim; q != NULL; q = q->prox)
printf("%.2lf\n", q->x);
else
printf("\nPilha Vazia\n");
printf("\n");
}
void pilha_soma_pilha (Pilha*p)
{
Lista *q, *aux;
double soma;
soma = 0;
if (p != NULL)
{
q = p->prim;
aux = q;
while ( q != NULL)
{
soma = soma + q->x;
q = q ->prox;
}
printf(" \n\nSoma = %lf \n", soma);
}
else
printf("\nPilha Vazia\n");
printf("\n");
}
int main()
{
Pilha*p;
int n, a, c;
a = 0;
c = 0;
printf("\n Digite um numero para obter seus divisores impares: ");
scanf("%d", &n);
p = pilha_cria();
while (a <= n)
{
if (a%2 == 1)
{
if (n%a == 0)
{
c = c +1;
pilha_insere(p,a);
}
}
a = a + 1;
}
printf("\nConteudo da pilha: \n");
pilha_imprime(p);
pilha_libera(p);
printf("\n\n");
return 0;
}