• + 0 comments
    public static void solve(double meal_cost, int tip_percent, int tax_percent) {
            System.out.printf("%.0f", meal_cost + ((meal_cost * (tip_percent / 100f)) + (meal_cost * (tax_percent / 100f))));
        }