у"
///
///
/// void button1_Click (object sender, EventArgs e)
{(checkBox1.Checked == true)// Додавання
{a = Convert.ToInt32 (textBox1.Text); b = Convert.ToInt32 (textBox2.Text); c = Convert.ToInt32 (textBox3.Text); d = Convert.ToInt32 (textBox4. Text);
int x = a + c; y = b + d;
textBox5.Text = x.ToString ();. Text = y.ToString ();
} (checkBox2.Checked == true)// Віднімання
{a = Convert.ToInt32 (textBox1.Text); b = Convert.ToInt32 (textBox2.Text); c = Convert.ToInt32 (textBox3.Text); d = Convert.ToInt32 (textBox4. Text);
int x = a - c; y = b - d;
textBox5.Text = x.ToString ();. Text = y.ToString ();
} (checkBox3.Checked == true)// Множення
{a = Convert.ToInt32 (textBox1.Text); b = Convert.ToInt32 (textBox2.Text); c = Convert.ToInt32 (textBox3.Text); d = Convert.ToInt32 (textBox4. Text);
int x = a * c - b * d; y = a * d + b * c;
textBox5.Text = x.ToString ();. Text = y.ToString ();
} (checkBox4.Checked == true)// Ділення
{a = Convert.ToDouble (textBox1.Text); b = Convert.ToDouble (textBox2.Text); c = Convert.ToDouble (textBox3.Text); d = Convert.ToDouble (textBox4. Text); x = (a * c + b * d)/(Math.Pow (c, 2) + Math.Pow (d, 2)); y = (b * c - a * d)/(Math. Pow (c, 2) + Math.Pow (d, 2));. Text = x.ToString ();
textBox6.Text = y.ToString ();
} (checkBox5.Checked == true)// Модуль
{a = Convert.ToInt32 (textBox5.Text); b = Convert.ToInt32 (textBox6.Text); mod = Math.Sqrt (Math.Pow (a, 2) + Math.Pow ( b, 2));. Text = mod.ToString ();
} (checkBox6.Checked == true)// Аргумент
{a = Convert.ToDouble (textBox5.Text); b = Convert.ToDouble (textBox6.Text); KSI = (Math.Atan (b/a) * 180)/Math.PI; . Text = KSI.ToString ();
}
}
///
///Очищення
///
///
/// void button3_Click (object sender, EventArgs e)
{. Clear ();. Clear ();. Clear ();. Clear ();. Clear ();. Clear ();
textBox8.Clear ();. Clear ();. Clear ();
textBox10.Clear ();
}
///
///Представлення результату обчислень в показовій формі
///
///