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
14 lines
353 B
/* SkiJumper.java
|
|
* CS207-2 Homework 7 Fall 2018
|
|
* This class represents a Ski Jumper in code.
|
|
*
|
|
* Add code to this class by implementing the interfaces
|
|
* ITrainer and IAthlete such that the code in main()
|
|
* executes providing the output shown in Problem 3.
|
|
*/
|
|
public class SkiJumper implements IAthlete, ITrainer
|
|
{
|
|
|
|
|
|
|
|
} // End class SkiJumper
|