Write an Interface FeeStructure that provide the following functionality for calculating Fee Structure
interface FeeStructure{
double calculateFee(int creditHour, String type );
double calculateFee(int creditHour, String type, int discountPercent );
}
class App {
public static void main(String[] args) {
}
}
Comments
Leave a comment