TD1 E8
This commit is contained in:
parent
e403cd62fb
commit
1b197a92fa
34
TP1/E8.c
Normal file
34
TP1/E8.c
Normal file
|
@ -0,0 +1,34 @@
|
|||
/* Affiche une table de multiplication */
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
int main() {
|
||||
|
||||
float S0 = 8000;
|
||||
float t = 0.005;
|
||||
float x = 250;
|
||||
|
||||
|
||||
float S = S0;
|
||||
int m;
|
||||
for (m = 1; m <= 12; m++) {
|
||||
S = S * (1 + t) - x;
|
||||
printf("Au mois %d, vous devrez %f€ à vôtre banque\n", m, S);
|
||||
}
|
||||
|
||||
S = S0;
|
||||
float Sn = S; // Sn : prochaine mensualité
|
||||
m = 0;
|
||||
while (Sn > 0) {
|
||||
m++;
|
||||
S = Sn;
|
||||
Sn = S * (1 + t) - x;
|
||||
}
|
||||
|
||||
m--; // Dans la boucle m prend une mensualité en trop
|
||||
|
||||
printf("Au mois %d, il vous restera %f€ à payer.\n", m, S);
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -27,6 +27,9 @@ E6.exe: E6.c
|
|||
E7.exe: E7.c
|
||||
gcc E7.c -o E7.exe
|
||||
|
||||
E8.exe: E8.c
|
||||
gcc E8.c -o E8.exe
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
|
|
Reference in a new issue