Нужно заменить кусок кода на этот
double x = double.Parse(textBoxl.Text);
double у = double.Parse(textBox2.Text);
double z = double.Parse(textBox3.Text);
//x = 0.1722;
//y = 6.33;
//z = 3.25;
double a = 5.0 * Math.Atan(x);
double b = 1.0 / 4.0 * Math.Acos(x);
double c = x + 3.0 * Math.Abs(x - y) + Math.Pow(x, 2);
double d = Math.Abs(x - y) * z * Math.Pow(10, -4) + Math.Pow(x, 2); double u = a - b * c / d;
textBox4.Text += Environment.NewLine + "U = " + u.ToString("#.###");
Нужно заменить кусок кода на этот
double x = double.Parse(textBoxl.Text);
double у = double.Parse(textBox2.Text);
double z = double.Parse(textBox3.Text);
//x = 0.1722;
//y = 6.33;
//z = 3.25;
double a = 5.0 * Math.Atan(x);
double b = 1.0 / 4.0 * Math.Acos(x);
double c = x + 3.0 * Math.Abs(x - y) + Math.Pow(x, 2);
double d = Math.Abs(x - y) * z * Math.Pow(10, -4) + Math.Pow(x, 2); double u = a - b * c / d;
textBox4.Text += Environment.NewLine + "U = " + u.ToString("#.###");