Jump to content

Break Statement


Cesar Ribeiro

Recommended Posts

I have difficulties with this problem that asks me to

try to add a maximum number of tries to guess the target number. You have five tries, but if you guess it first, print a message and break out of the loop.

Previous

 

this is what I have goten so far

 

 

 

var target = Math.ceil(Math.random() * 10);
var guess = Math.ceil(Math.random() * 10);
var tries = 5;


console.log('target'+target);

while (tries>0) {
    guess = Math.ceil(Math.random() * 10);
    tries--;
    console.log(guess);
}

 

Link to comment
Share on other sites

Para teres ajuda tens de colocar as tuas dúvidas em português e de uma forma clara e concreta.
Despejar o enunciado de um exercício na esperança que alguém o resolva não vai resultar.

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.