home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / f / fracxtr4.zip / TEMP.C < prev    next >
C/C++ Source or Header  |  1992-06-19  |  168b  |  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. }