Advertisement
Guest User

Банкова сметка

a guest
Mar 20th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3.  
  4.  
  5. textBox2.Text = "";
  6. textBox3.Text = "";
  7. textBox4.Text = "";
  8. if (radioButton1.Checked)
  9. {
  10. number = r.Next(0, 101);
  11. }
  12.  
  13. if (radioButton2.Checked)
  14. {
  15. number = int.Parse(textBox1.Text);
  16. }
  17. }
  18.  
  19. private void button2_Click(object sender, EventArgs e)
  20. {
  21. textBox2.Text = "";
  22. textBox3.Text = "";
  23. textBox4.Text = "";
  24. int tries = 0;
  25. int guess=int.Parse(textBox2.Text);
  26. if(guess<number)
  27. {
  28. textBox3. Text = "Надолу";
  29. }
  30. else
  31. {
  32. textBox3.Text = "Нагоре";
  33. }
  34. tries++;
  35. textBox4.Text = tries.ToString();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement