C/math.h/rint — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Версия 14:20, 25 мая 2010
rint: returns the value of arg rounded to the nearest integer
//Declaration: float rintf(float arg);
double rint(double arg);
long double rintl(long double arg);
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%f\n", rint (11));
return 0;
}
/*
11.000000
*/