Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. private void Prov1_Click(object sender, EventArgs e)
  2. {
  3. Double x1 = Convert.ToDouble(vvod_x1.Text);
  4. if (x1 > 0) Otvet1.Text = "Принадлежит";
  5. else Otvet1.Text = "Не принадлежит";
  6. }
  7.  
  8. private void Prov2_Click(object sender, EventArgs e)
  9. {
  10. Double x2 = Convert.ToDouble(vvod_x2);
  11. if (x2 > 7 && x2 <= 25) Otvet2.Text = "Принадлежит";
  12. else Otvet2.Text = "Не принадлежит";
  13. }
Add Comment
Please, Sign In to add comment