You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
353 B

7 years ago
  1. /* SkiJumper.java
  2. * CS207-2 Homework 7 Fall 2018
  3. * This class represents a Ski Jumper in code.
  4. *
  5. * Add code to this class by implementing the interfaces
  6. * ITrainer and IAthlete such that the code in main()
  7. * executes providing the output shown in Problem 3.
  8. */
  9. public class SkiJumper implements IAthlete, ITrainer
  10. {
  11. } // End class SkiJumper