home *** CD-ROM | disk | FTP | other *** search
/ CD-X 3 / cdx_03.iso / shutils / dos / fracxtr6.arj / BAT / TEMP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-19  |  168 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. void main()
  4. {
  5.    int n;
  6.    float a=-2.19, b=0.95;
  7.  
  8.    printf("\n\n");
  9.    for (n=0; n<=5; ++n)  printf("%G\n", ((5-n)/5.0)*a + (n/5.0)*b);
  10. }