Search:

Type: Posts; User: Olympaphibian89

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    1,161

    Re: Die Rolling Program

    Ah, I see it now. Yes, I forgot to actually call the into play the set method. I'm just jumping back into programming after a about a 2 year break so I'm super rusty. It runs fine now, tyvm.
  2. Replies
    2
    Views
    1,161

    Die Rolling Program

    So first I'm supposed to create a Die class for generating a random number from 1 to 6

    import java.util.*;
    public class Die
    {
    int faceValue;
    final int HIGHEST_DIE_VALUE = 6;
    final int...
Results 1 to 2 of 2