Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Java Program to create a BigDecimal from a string type value

import java.math.BigDecimal;
public class Demo {
	public static void main(String[] argv) throws Exception {
		BigDecimal one = new BigDecimal("562537627.8787867");
		BigDecimal two = BigDecimal.valueOf(562L);
		one = one.add(two);
		System.out.println(one);
	}
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.