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

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