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.

9 lines
247 B

7 years ago
  1. /* Interface IAthlete.java
  2. * CS207-2 Homework 7 Fall 2018
  3. * An interface is a behavior that implementing classes are required to conform to.
  4. * Do not make changes to this class.
  5. */
  6. public interface IAthlete
  7. {
  8. public abstract void data();
  9. }