DEV_BUT1/DEV1.1/TP03/leprint.c

10 lines
215 B
C
Raw Normal View History

2022-10-18 14:49:46 +02:00
#include <stdio.h>
#include <stdlib.h>
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;
}