Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[CODE]#!/usr/bin/perl -w print"pick a number 1 - 100:/n"; $guess = <STDIN>; chomp ($thinkingof = (rand 100)); while($guess==$thinkingof) { if ($guess>$thinkingof) { print "you guessed too high/n"; } }; while($guess==$thinkingof) { if ($guess>$thinkingof) { print "you guessed too low/n"; } }; else ($guess = $thinkingof) { print "you got it right/n"; …
The End.
mdawg252