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

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