[C# WinForm] Giải phương trình bậc 1 Phần mềm: Visual Studio CODE: Select All private void button1_Click(object sender, EventArgs e) { int a = Convert.ToInt32(txta.Text); int b = Convert.ToInt32(txtb.Text); string kq; if (a == 0) { if (b == 0) MessageBox.Show("phuong trinh vo so nghiem"); else MessageBox.Show("phuong trinh vo nghiem"); } else { int x = (-b / a); txtkq.Text = x.ToString(); } }