C Tutorial/math.h/acosh

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

acosh

Item Value Header file math.h Declaration float acoshf(float arg);double acosh(double arg);long double acoshl(long double arg); Return returns the arc hyperbolic cosine of arg. Parameter The argument must be zero or greater; otherwise a domain error will occur.


#include <math.h>
  #include <stdio.h>
  int main(void)
  {
    double val = -1.0;
    do {
      printf(" %f.\n", val, acosh(val));
      val += 1;
    } while(val<=10.0);
    return 0;
  }