Write a complete MATLAB program to find a random number generated by the computer in the range 1-50.?
-
The user has 5 trial rights to correctly guess the number or the game will be over. The program will read the guess and tell the user whether the guess is bigger or smaller than the random number it has generated. Sample outputs are given below: Computer has selected a number between 1-50 Please make a guess: 25 Try smaller Please make a guess: 12 Try bigger Please make a guess: 18 Yes, it's 18. Number of trials is 3.
-
Answer:
num = randi(50); for i=1:5 x = input('Please make a guess: ') if x < num disp('Try Bigger'); elseif x > num disp('Try Smaller'); elseif x == num disp(['Yes, its ' num2str(x) '. Number of trials is ' num2str(i)]); break; end end Hope you get the idea.
Jared at Yahoo! Answers Visit the source
Other answers
num = randi(50); for i=1:5 x = input('Please make a guess: ') if x < num disp('Try Bigger'); elseif x > num disp('Try Smaller'); elseif x == num disp(['Yes, its ' num2str(x) '. Number of trials is ' num2str(i)]); break; end end Hope you get the idea.
Jared
Related Q & A:
- How to find a phone number on Yahoo?Best solution by Yahoo! Answers
- Is there a website that you can find a travel partner?Best solution by travel-buddies.com
- How can i downgrade a fat psp v.5.03 down to v.1.50?Best solution by Yahoo! Answers
- Which jobs are available for me after a complete T.Y.BSc.(Computer Science)?Best solution by entrance-exam.net
- Where can I find a Manual for Mercury Classic 50?Best solution by busytravellers.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.