exercise5

This commit is contained in:
2025-04-30 02:14:23 +03:00
parent de35a9dd15
commit 991478f774
5 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#include <stdio.h>
#include <math.h>
int main (void) {
double x;
x = fabs(10.85);
x = floor(10.85);
x = fabs(-0.678);
x = ceil(9.234);
x = fabs(0.0);
x = ceil(-34.87);
x = ceil(-fabs(-12 - floor(-9.5)));
printf("%.5f\n", x);
}