C++ need help (all the part) please help me.....i need to turn in tommow

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lam388
    New Member
    • Oct 2007
    • 3

    C++ need help (all the part) please help me.....i need to turn in tommow

    Write a program to implement the simulation of life as described in Scientific American by Martin Gardner. The program will be implemented on a two dimensional surface of size 80 by 80 visible elements. The rules of the simulation are as follows:

    1) An initial set of cells are marked as “alive” by the user. This is generation 0. Your program will ask the user to input a set of row and column values to let the user determine which cells are “alive”. Display this generation.
    2) Cells change for each succeeding generation by the following rules:
    a. A living cell dies of overcrowding in the next generation if it currently has 4 or more living neighbors.
    b. A living cell dies of loneliness in the next generation if it currently has only 0 or 1 living neighbors.
    c. An empty cell becomes a “birth” cell (becomes alive) in the next generation if it has exactly 3 living neighbors.
    d. All other cells remain unchanged.
    3) The new generation becomes the current generation and is displayed.
    4) After displaying each new generation, ask the user if they wish to continue to the next generation or stop at this point.
  • Savage
    Recognized Expert Top Contributor
    • Feb 2007
    • 1759

    #2
    Originally posted by lam388
    Write a program to implement the simulation of life as described in Scientific American by Martin Gardner. The program will be implemented on a two dimensional surface of size 80 by 80 visible elements. The rules of the simulation are as follows:

    1) An initial set of cells are marked as “alive” by the user. This is generation 0. Your program will ask the user to input a set of row and column values to let the user determine which cells are “alive”. Display this generation.
    2) Cells change for each succeeding generation by the following rules:
    a. A living cell dies of overcrowding in the next generation if it currently has 4 or more living neighbors.
    b. A living cell dies of loneliness in the next generation if it currently has only 0 or 1 living neighbors.
    c. An empty cell becomes a “birth” cell (becomes alive) in the next generation if it has exactly 3 living neighbors.
    d. All other cells remain unchanged.
    3) The new generation becomes the current generation and is displayed.
    4) After displaying each new generation, ask the user if they wish to continue to the next generation or stop at this point.
    Simple enough,we will get started as soon as you post where are you stuck,because this is your homework,after all.

    Savage

    PS:Please read our posting guidelines. :)

    Comment

    • Studlyami
      Recognized Expert Contributor
      • Sep 2007
      • 464

      #3
      you posted this yesterday or two days ago, and we said the same thing. We aren't going to do your homework for you.

      Comment

      Working...