Files
DEV/DEV1.1/TP04/operation.c

11 lines
216 B
C
Raw Normal View History

2023-09-12 17:26:55 +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;
}