mirror of
https://github.com/Dichgrem/Java.git
synced 2025-12-16 12:41:58 -05:00
12 lines
257 B
Java
12 lines
257 B
Java
package com.study.demo4;
|
|
|
|
class BikeDeliveryCalculator implements DeliveryFeeCalculator {
|
|
@Override
|
|
public double calculateFee(double distance) {
|
|
if (distance <= 5) {
|
|
return 5.0; // 起步价
|
|
}
|
|
return 5.0 + (distance - 5) * 1.5;
|
|
}
|
|
}
|