/* 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