home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT4.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-13  |  414 b   |  13 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat4.c                                                     */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <math.h>
  6. void main()
  7. {
  8.  double number1=1.0;
  9.  double number2;
  10.  number2 = acosh(number1);
  11.  printf("╝╞ªr %1f ñºñ╧┬∙ª▒╜u╛l⌐╢¡╚¼░: %1f\n",number1,number2);
  12.  }
  13.