C Tutorial/math.h/ceil — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
ceil
Item Value Header file math.h Declaration float ceilf(float num);double ceil(double num);long double ceill(long double num); Return returns the smallest integer not less than num.
- Given 1.02, ceil() would return 2.0.
- Given -1.02, ceil() would return -1.
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%f", ceil(9.9));
}