$price = 24.99; $tax = .06; function calculate_cost($tax, $price) { $sales_tax = $tax; return $price + ($price * $sales_tax); } // Обратите внимание на возврат значения функцией calculate_cost(). $total_cost = calculate_cost ($tax, $price); // Округлить цену до двух десятичных цифр. $total_cost = round($total_cost, 2); print "Total cost: $".$total_cost; // $total_cost = 26.49