#include #include int main(void) { int i; double th; for(i=0;i<10;i++) { th=2*M_PI*i/10.0; printf("%d %f %f\n",i,th,sin(th)); } return 0; }