Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Re: Re: Guess the number

by Mongo Job (Initiate)
on Feb 18, 2004 at 21:46 UTC ( [id://330073]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Guess the number
in thread Guess the number

Hey is your computer science companion. It's not waiting for imput and when you try to print $guess before the exit it does nothing, so guess doesn't ever get a value... I'll clean it up a bit and send it back...

Replies are listed 'Best First'.
Re: Re: Re: Re: Guess the number
by Mongo Job (Initiate) on Feb 18, 2004 at 21:59 UTC
    print "Content-type: text/html"; use CGI; $query = new CGI; print "<HTML><HEAD><title>Guess the number.</title></HEAD><BODY>"; print "<H1>DIRECTIONS:<br>Guess a number between 1 and 100 inclusiv +e.\n\n</H1>"; $random = int(rand(100)+1); for ($try=6;$try>0;$try--) { print "You have 1 try left. Use it wisely!<br>" if($try ==1); print "You have $try tries left.<br>" if($try !=1); print "What is your guess? --><br>"; print '<INPUT TYPE="text" NAME="guess">'; print '<INPUT TYPE = "submit"><br>'; print "HA! HA! too HIGH." if ($guess>$random); print "OH! NO! too LOW." if ($guess<$random); if ($guess==$random){ print "'Bout time you guessed it. Stupid head.<br><br>" ; print"</BODY>"; exit; # print "The answer was $random. And so is your IQ.\n\n\nSTUPID +!!\n\n";exit; } } print "The answer was $random.<br> And so is your IQ.<br><br><br>STUPI +D!!"; print"</BODY>"; exit;
    There we go patty k... much cleaner.. htmled up even, the \n was doing NOTHING so I changed it to: <br>
      Dude! i tried a variation of this and it did the same thing...
      It prints it out $tries times then spits out the answer...

      What do a plum and an elephant heve in common??

      Look Ma, no hands!
Re: Re: Re: Re: Guess the number
by chip_creep (Acolyte) on Feb 22, 2004 at 17:23 UTC
    Howdy yo! thanks for taking a look at it. I'll be on my sisters computer now so i need d/l another editor. I will be back shortly.
    -----Look Ma, no hands!-----

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-03-19 05:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found