Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Adding one last conditional in a random-number guessing game

by wind (Priest)
on Feb 23, 2014 at 02:02 UTC ( [id://1075860]=note: print w/replies, xml ) Need Help??


in reply to Adding one last conditional in a random-number guessing game

Another way is to continually adjust the range of acceptable numbers.

As you see, it's often good practice to separate constants at the top of your program so that things can be adjusted easily at a later date.

use strict; use warnings; my $min = 1; my $max = 10; my $target = $min + int(rand ($max - $min + 1)); print "Please give a number between $min and $max\n"; while () { my $guess = <STDIN>; chomp $guess; if ($guess < $min || $guess > $max) { print "Outside of range, please give a number between $min and + $max\n"; } elsif ($guess > $target) { $max = $guess - 1; print "Too high, please give a number between $min and $max\n" +; } elsif ($guess < $target) { $min = $guess + 1; print "Too low, please give a number between $min and $max\n"; } else { print "You got the correct number!\n"; last; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1075860]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-19 10:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found