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
258 B
9 lines
258 B
/* Interface ITrainer.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 ITrainer
|
|
{
|
|
public abstract void train( double h );
|
|
}
|