home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource2 / sclib_2 / 2_6 / v6n6088d.txt / NLETTER / 6.6 / CURVES4.PRG
Encoding:
Text File  |  1995-11-01  |  139 b   |  11 lines

  1. Program 4
  2.  
  3.     r = y1; s = 0.5;
  4.     for (xi=x1; xi<=x2; xi++)
  5.     {
  6.         plot(xi,r);
  7.         if(s+m>=1)
  8.             { r++; s += (m-1); }
  9.         else s += m;
  10.     }
  11.