Hitung fungsi Tip dan Pajak Penjualan

    public static void solve(double meal_cost, int tip_percent, int tax_percent) {

        double tip = Math.round((tip_percent * .01) * meal_cost);
        double tax = Math.round((tax_percent * .01) * meal_cost);
        int total_cost = (int)(meal_cost + tip + tax);
        System.out.println(total_cost);
    }
Ashamed Angelfish