Files
DEV/DEV1.1/TP05/Opération.c

13 lines
218 B
C
Raw Normal View History

#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;
}