C/math.h/nearbyint — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:22, 25 мая 2010

nearbyint: returns the value of arg rounded to the nearest integer

    
//Declaration: float nearbyintf(float arg); 
               double nearbyint(double arg); 
               long double nearbyintl(long double arg);  
 
    
  
  #include <math.h>
  #include <stdio.h>
  int main(void)
  {
     double f;
     f = nearbyint (2.3);
    
     printf("%f " , f);
  }
         
        /*
        2.000000
        */