#! /bin/awk -f
BEGIN {
for ( x=0.02; x<30.0; x+=0.05 ) {
    printf("%10.3f %10.5f\n",x,sin(x)/x)
  }
}