-
Notifications
You must be signed in to change notification settings - Fork 4
Addition
Abraham Hernandez edited this page Jul 26, 2018
·
2 revisions
Add two BigDecimal numbers
public static BigDecimal add(BigDecimal x, BigDecimal y);
Parameters:
- x - Big decimal number
- y - Big decimal number
Returns:
Addition of x
plus y
import com.abranhe.bigdecimal.Operations;
import java.math.BigDecimal;
public static void main(String[] args){
BigDecimal x = new BigDecimal("124567890.0987654321");
BigDecimal y = new BigDecimal("987654321.123456789");
System.out.println(Operations.add(x, y));
//=> 1112222211.2222222211
}