BUT2/DEV/DEV1.1/TP_Reels/programme2.c~

9 lines
175 B
C
Raw Normal View History

2023-10-23 13:23:36 +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);
return EXIT_SUCCESS;
}