-
Notifications
You must be signed in to change notification settings - Fork 1
/
3_24.c
58 lines (48 loc) · 1.11 KB
/
3_24.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
/* 3.24) Uma loja tem 150 clientes registrados e deseja
mandar uma correspondência a cada um deles
anunciando um bónus especial. Escreva um algoritmo que
leia o nome do cliente e o valor das suas
compras no ano passado e calcule um bónus de 10% se o valor
das compras for menor que 1000€ e de
20%, caso contrário */
struct data{
int year;
};
struct compra{
float valor;
struct data d;
};
struct client{
char nome[100];
char morada[100];
int n_compras;
struct compra *compras;
};
struct loja{
struct client clientes[150];
};
int calc_bonus(struct client *c)
{
int acc = 0;
int last_year = current_year() - 1;
for(int i = 0; i < 100; i++){
if(c->compras[i]->d.year == last_year){
acc += c->compras[i]->valor;
}
}
return acc > 1000 ? 20 : 10;
}
void enviar_bonus(struct client *c, int bonus)
{
printf("Sending bonus to %s\n", c->morada);
}
void ex_3_24()
{
struct loja l;
get_data(&l);
int bonus;
for(int i = 0; i < 150; i++){
bonus = calc_bonus(&l.clientes[i]);
enviar_bonus(&l.clientes[i], bonus);
}
}