Howdy guys
need help changing , from string to a big decimal for my addition method in my calculator , i understand the problem but not the solution . Any help would be great, thanks.
public void add()
{
BigDecimal oneNumber = model.getDisplay();
BigDecimal twoNumber = model.getDisplay();
BigDecimal result = oneNumber.add(twoNumber);
}