home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_06_06 / v6n6088a.txt < prev    next >
Text File  |  1989-09-28  |  296b  |  13 lines

  1.  \NLETTER\6.6\CURVES.PRGProgram 1
  2.  
  3.      double y,
  4.      int xi,yi;
  5.      for (xi=x1; xi<=x2; xi++)
  6.       {
  7.         y = m*xi+c;
  8.         yi = round(y);
  9.         plot(xi,yi);
  10.       }
  11.  
  12.  
  13.