Files
DEV/DEV1.1/TP05/tp5exo2.c

10 lines
230 B
C
Raw Normal View History

2025-09-15 11:59:44 +02:00
int main(void) {
printf("%f\n", 5.0+2.5);
printf("%f\n", 5.0-2.5);
printf("%f\n", 5.0*2.5);
printf("%f\n", 5.0/2.5);
printf("%f\n", 5.0%2.5);
return EXIT_SUCCESS;
}
/* l'erreur est ici car ca ne prend pas %*/