}
double y;
public Form1()
{
InitializeComponent();
for (double x = .01; x < .25; x += .01)
y = x - Math.Sin(x);
Console.WriteLine(y);