Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to round BigDecimal in Java

1 Answer

0 votes
import java.math.BigDecimal;
 
public class Program {
    public static void main(String[] args) {
        BigDecimal bd = new BigDecimal("93298.12345");
 
        System.out.println(bd.setScale(3, BigDecimal.ROUND_UP));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_CEILING));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_DOWN));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_FLOOR));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_HALF_DOWN));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_HALF_EVEN));
        System.out.println(bd.setScale(3, BigDecimal.ROUND_HALF_UP));
    }
}
   
   
    
/*
run
    
93298.124
93298.124
93298.123
93298.123
93298.123
93298.123
93298.123
    
*/

 



answered Jun 3, 2024 by avibootz
edited Jun 4, 2024 by avibootz

Related questions

1 answer 94 views
1 answer 91 views
2 answers 96 views
1 answer 106 views
1 answer 105 views
105 views asked Jul 24, 2022 by avibootz
1 answer 191 views
2 answers 175 views
175 views asked Jul 25, 2019 by avibootz
...