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.66K
1 Posted Topic
[code] import java.util.Random; import java.util.Scanner; public class NumberGame { public static void main(String[] args) { Random generator = new Random(); Scanner in = new Scanner(System.in); int number = generator.nextInt(100) + 1; int on_off = 1; while(on_off == 1){ System.out.print("Guess a number between 1 and 100: "); int guess = in.nextInt(); …
The End.
StonedNpwnd