Changes between Version 11 and Version 12 of ControlSystems/SoftwareTeam/Training/GettingStarted/JavaExercises


Ignore:
Timestamp:
Nov 15, 2016, 12:37:05 AM (9 years ago)
Author:
azhang
Comment:

Formatting

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/Training/GettingStarted/JavaExercises

    v11 v12  
    99
    1010
    11 Another challenge:
     11== Another challenge:
    1212Write a high-low guessing game; have a person think of the number, and have the computer try to guess it. After each guess, the human will tell the computer whether it's higher or lower
    1313
    1414
    15 Another challenge: Animal Farm
     15== Another challenge: Animal Farm
    1616Create an `abstract class` called `Animal` that has a `mass` and a `name`
    1717* All animals should have a constructor which gives them a `mass` and a `name` when they are created
     
    4242
    4343
    44 Animal Farm step 2:
     44== Animal Farm step 2:
    4545* All animals can also be created with only a `mass`.
    4646* If an animal is created without a `name`, it's name is set to `Steve` by default.