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

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