Search:

Type: Posts; User: byako

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    1,286

    Having trouble returning the right out put.

    ]
    import java.util.*;

    public class BiddingOnItems{

    public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    String s = getBiddingPrice(scan);
    String items =...
  2. Re: Conways Game of Life. Long Death option. Please help..

    okay, so I have


    public enum CellStateValue{
    DEAD,
    ALIVE,
    DYING;}


    instead of the private boolean alive; that was used earlier.
  3. Re: Conways Game of Life. Long Death option. Please help..

    Someone please help.. I've been working on this for hours for the last few days and I can't figure it out..
  4. Re: Conways Game of Life. Long Death option. Please help..

    Thank you for those quick tutorials.
    So.. I understand what they actually do, but I still don't understand how I would incorporate it into this program itself..
    there is a .createDead() and...
  5. Re: Conways Game of Life. Long Death option. Please help..

    I know that this program is using enumerations, since it was a package given to me, but I'm not quite sure how enumerations work in these cases..
  6. Conways Game of Life. Long Death option. Please help..

    Okay, so for my Java class we have been instructed to make a java program that implements Conway's Game of Life. Where, when run, a grid shows, allows the user to declare which cells are "alive...
Results 1 to 6 of 6