getMaxDecimalLength static method
Implementation
static int getMaxDecimalLength(double a, double b, double c, double d) {
int result = max(getDecimalLength(a), getDecimalLength(b));
result = max(result, getDecimalLength(c));
result = max(result, getDecimalLength(d));
return result;
}