00001 00002 #include <stdio.h> 00003 #include <math.h> 00004 00005 main() 00006 { 00007 int i; 00008 for (i = 0; i < 10000; i++) 00009 printf("%d %f %f\n", i, sin((M_PI*i)/1000.), cos((M_PI*i)/1000.)); 00010 }