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.55K
1 Posted Topic
Re: import java.io.*; import java.util.Random; public class Math { //----------------------------------------------------------------- // Generates random numbers //----------------------------------------------------------------- public static void main(String[] args) throws IOException { BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); Random generator = new Random(); int num1; int num2; int guess; int answer; String string1; num1 = generator.nextInt(13); //Gets random num1 num2 … |
The End.