C/math.h/round — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Текущая версия на 10:22, 25 мая 2010
round: returns the value of arg rounded to the nearest integer
//Declaratoin: float roundf(float arg); double round(double arg); long double roundl(long double arg);
// Values precisely between two values, such as 3.5, are rounded up.
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%f\n", round (3.2));
return 0;
}
/*3.000000*/