Use MATLAB to make a guessing game. The software will work interacting with the user via the command window. The softwar
Posted: Fri Jul 01, 2022 5:51 am
Use MATLAB to make a guessing game. The software will work interacting with the user via the command window. The software will first ask the user to enter a name to proceed to greet the user using the given name. Then the game will ask the user to input four numbers from 0 to 10. Two of those numbers are the winning ones. Depending on the numbers entered by the user, the software will output different messages. Please see table 1 to check the example answers from the software. Winning numbers entered 0 1 (3 or 4) 2 (3 and 4) Message "Unfortunately, none of your inputs is a winning number, looser" "Almost! Of your numbers is right, but you are still missing one, looser" • "The numbers are 3 and 4, you win!" Table 1. Example messages based on the winning numbers. Software Requirements Specification (SRS): • The winning numbers must be 3 and 4. • No loops and/or if statements are allowed to be used. • The software must work using a function whose name is guessingGame. • The function must not use inputs when is called. • The function must use variables to store the user inputs. The function must have an output that refers to the guessing numbers. The output must be 1 when there have been no winning numbers entered. The output must be 2 when there has been one winning number entered. • • The output must be 3 when there have been three winning numbers entered.
• The function must use the following functions only: a string() Input() o disp() ofprintf()