This commit is contained in:
2024-03-05 14:19:35 +03:00
parent b199446865
commit a4b587dc41
31 changed files with 0 additions and 0 deletions

16
w3school/math.c Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
#include <math.h>
int myProg(int, int);
int main(){
float fullNum;
int b;
printf("Lutfen rakam giriniz! \n");
scanf("%f\n", &fullNum);
printf("%f\n", ceil(fullNum));
printf("%f", floor(fullNum));
return 0;
}