print "Content-type: text/html"; use CGI; $query = new CGI; print "Guess the number."; print "

DIRECTIONS:
Guess a number between 1 and 100 inclusive.\n\n

"; $random = int(rand(100)+1); for ($try=6;$try>0;$try--) { print "You have 1 try left. Use it wisely!
" if($try ==1); print "You have $try tries left.
" if($try !=1); print "What is your guess? -->
"; print ''; print '
'; 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.

" ; print""; exit; # print "The answer was $random. And so is your IQ.\n\n\nSTUPID!!\n\n";exit; } } print "The answer was $random.
And so is your IQ.


STUPID!!"; print""; exit;