Changes between Version 11 and Version 12 of ControlSystems/SoftwareTeam/Training/GettingStarted/JavaExercises
- Timestamp:
- Nov 15, 2016, 12:37:05 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/JavaExercises
v11 v12 9 9 10 10 11 Another challenge:11 == Another challenge: 12 12 Write 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 13 13 14 14 15 Another challenge: Animal Farm15 == Another challenge: Animal Farm 16 16 Create an `abstract class` called `Animal` that has a `mass` and a `name` 17 17 * All animals should have a constructor which gives them a `mass` and a `name` when they are created … … 42 42 43 43 44 Animal Farm step 2:44 == Animal Farm step 2: 45 45 * All animals can also be created with only a `mass`. 46 46 * If an animal is created without a `name`, it's name is set to `Steve` by default.