This commit is contained in:
2026-09-14 10:44:11 +02:00
parent 6dbd74db95
commit bf705d701d
9 changed files with 52 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdlib.h>
#include <stdio.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);
return EXIT_SUCCESS;
}