This commit is contained in:
Geoffrey Frogeye 2016-01-20 11:12:54 +01:00
parent e403cd62fb
commit 1b197a92fa
2 changed files with 37 additions and 0 deletions

34
TP1/E8.c Normal file
View 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;
}

View file

@ -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: