How to split a number in MATLAB?

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

Was this solution helpful to you?

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:

Just Added Q & A:

Find solution

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.