19 package org.turro.math;
27 public static double sellingPrice(
double cost,
double margin,
int fractionDigits) {
28 return new Round(cost / (1.0 - margin)).
decimals(fractionDigits).value();
static double sellingPrice(double cost, double margin, int fractionDigits)
Round decimals(int digits)