C#in Visual Studios 2019 WindowsFormApp. Design and Form class please
Write a windows forms app to implement the following functionality. Enter a start int in a text box. Enter an end int in a text box. You have a secret integer in a certain range in your mind. Write an efficient guess procedure from computer to get the target. Efficient means that, if the target is in [0, 100), then your algorithm should not take more than 7 tries. After each guess, the following prompts are displayed: How is the guess compared with your answer 1. too big 2. too small 3. just right If the guess is too big, enter 1, if the guess is too small, enter 2, if the guess is just right, enter 3. If you enter 1 or 2, which means the guess is too big or too small, the computer will make another guess based on your feedback. Use three radio buttons as option 1-3. Show transcribed image text Write a windows forms app to implement the following functionality. Enter a start int in a text box. Enter an end int in a text box. You have a secret integer in a certain range in your mind. Write an efficient guess procedure from computer to get the target. Efficient means that, if the target is in [0, 100), then your algorithm should not take more than 7 tries. After each guess, the following prompts are displayed: How is the guess compared with your answer 1. too big 2. too small 3. just right If the guess is too big, enter 1, if the guess is too small, enter 2, if the guess is just right, enter 3. If you enter 1 or 2, which means the guess is too big or too small, the computer will make another guess based on your feedback. Use three radio buttons as option 1-3.
Expert Answer
Answer to Write a windows forms app to implement the following functionality. Enter a start int in a text box. Enter an end int in…