home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 349_01 / sss.arc / EX_0201.C < prev    next >
Text File  |  1991-04-09  |  269b  |  18 lines

  1. /* Program EX_0201.C
  2.    Listing 1C - see documentation in TUTOR.SSS
  3. */
  4.  
  5. #include "SSSC.H"
  6.  
  7. main()
  8. {
  9.   float pt;
  10.   pt = EX(0.5);
  11.   while ( pt <= 10 )
  12.   {
  13.     printf("A new ship enters the port at time%7.2f\n",
  14.            pt);
  15.     pt += EX(0.5);
  16.   }
  17. }
  18.