source: trunk/Jgraph/sin2.c

Last change on this file was 418, checked in by Nicholas Riley, 16 years ago

Jgraph 8.3 from http://www.cs.utk.edu/~plank/plank/jgraph/jgraph.tar.gz

File size: 142 bytes
Line 
1#include <math.h>
2 main()
3 {
4 double x;
5 for (x = 0.1; x < 100.0; x += .03)
6 printf("%f %f\n", x, sin(x));
7 }
Note: See TracBrowser for help on using the repository browser.