New paste Repaste Download
public class BasePremium {
    public static double getBasePremium(String vehicleType) {
        if (vehicleType.equalsIgnoreCase("2W")) {
            return 2500;
        } else if (vehicleType.equalsIgnoreCase("4W")) {
            return 4500;
        } else {
            throw new IllegalArgumentException("Invalid vehicle type.");
        }
    }
}
Filename: None. Size: 363b. View raw, , hex, or download this file.

This paste expires on 2025-05-23 05:47:09.805431. Pasted through web.