Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

C# Windows Forms Visual Studios You are to create the classic game of Wheel of F

ID: 3774728 • Letter: C

Question

C# Windows Forms Visual Studios You are to create the classic game of Wheel of Fortune. Your application should consist of 3 players, underlines to represent letters in the puzzle, and the available letters. The initial screen should look something like: Note: My puzzle is "Pulp Fiction" but pick your own puzzle Notice that Player 1 goes first (see note at bottom of screen) and can either spin or guess the puzzle by clicking the appropriate button. If Player 1 spins, then the wheel will spin. To represent the wheel, create a random number from 1 to 10. Each will represent a spot on the wheel. Here are the wheel values: Random number 1: $100 Random number 2: S300 Random number 3: S500 Random number 4: S700 Random number 5: $900 Random number 6: $2000 Random number 7: $3000 Random number 8: $5000 Random number 9: -S1000 player loses S 1000 from his/her total and loses that turn Random number 10: $0 player only loses turn

Explanation / Answer

#include #include #include #include using namespace std; struct Player { string name; int money; }; int main(){ //PLAYER INFORMATION AND WELCOME Player one; one.money = 0; cout > one.name; cout