Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Java BigDecimal divideAndRemainder example 
 

Example below demonstrates, working of divideAndRemainder(BigDecimal divisor) method. Method divides the bigdecimal class object value on which it is invoked, by the bigdecimal class object value passed inside the parentheses of the method.

 

Java BigDecimal divideAndRemainder example

                         

Example below demonstrates, working of divideAndRemainder(BigDecimal divisor) method. Method divides the bigdecimal  class object value on which it is invoked, by the bigdecimal class object value passed inside the parentheses of the method.  Shortly it can said as method divides this.object value by the value of object passed.  Method return type is an bigdecimal array of length two(2). This array contains the method generated results. At array index zero(array[0]) method generated first result, 'quotient' is located & at array index one(array[1])  method generated second result, 'remainder' is located. 

The first result 'quotient' will always possess integer format. This means method will only generate the integer part, i.e. the portion of 'quotient' before decimal. 

Method will generate the remainder also as the second(array[1]) element of bigdecimal array[]. 

Method throws Arithmetic Exception when the divisor value is equal to zero.

Syntax for using the method:
public BigDecimal[] divideAndRemainder(BigDecimal divisor)

bigdecimal_objectName = dividendName.divideAndRemainder(divisor)

Java_divideAndRemainder_BigDecimal_divisor.java

import java.math.BigDecimal;
import java.text.NumberFormat;
import java.util.Locale;

public class Java_divideAndRemainder_BigDecimal_divisor {
  public static void main(String args[]) {
    System.out.println("");

    byte byte_value = 5;
    short short_value = 3125;

    BigDecimal obj_0 = new BigDecimal(short_value),
    obj_1 = new BigDecimal(byte_value);

    // constructing BigDecimal array
    BigDecimal array[] = obj_0.divideAndRemainder(obj_1);

    /* Here the element at index one is the remainder &
      the element at index at zero is the quotient's 
      integer part i.e. value before decimal*/
    System.out.println("Quotient's integer part" +
        " : " + array[0"\tRemainder : "
        + array[1]);

    byte_value = 7;  short_value = 22;
    BigDecimal rose = new BigDecimal(short_value),
    tech = new BigDecimal(byte_value),
    ant[] = rose.divideAndRemainder(tech);

    System.out.println("Quotient's integer" +
        " part : " + ant[0"\tRemainder :" +
            " " + ant[1]);

    
  }
}

Download the code

                         

» View all related tutorials
Related Tags: c class object objects integer method type default double decimal gd value return int if biginteger example work bigdecimal values

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.