Método BigInteger abs() en Java

requisito previo: Conceptos básicos de BigInteger

El método java.math.BigInteger.abs() devuelve el valor absoluto de un BigInteger. Al usar este método, uno puede encontrar el valor absoluto de cualquier tamaño grande de datos numéricos almacenados como BigInteger.

Sintaxis:

public BigInteger abs()

Parámetros: El método no toma ningún parámetro.

Valor devuelto: el método devuelve el valor absoluto de un BigInteger.

Ejemplos:

Input: -2300 
Output: 2300
Explanation:
Applying mathematical abs() operation on 
-2300, positive 2300 is obtained i.e |-2300| = 2300. 

Input: -5482549 
Output: 5482549

El siguiente programa ilustra el método abs() de BigInteger:

// Below program illustrates the abs() method
// of BigInteger 
  
import java.math.*;
  
public class GFG {
  
public static void main(String[] args) {
  
        // Create BigInteger object
        BigInteger biginteger=new BigInteger("-2300");
          
        // abs() method on bigInteger to find the absolute value
        // of a BigInteger
        BigInteger absolutevalue= biginteger.abs();
              
        // Define result
        String result ="BigInteger "+biginteger+
            " and Absolute value is "+absolutevalue;
        // Print result 
        System.out.println(result);
      
    }
}
Producción:

BigInteger -2300 and Absolute value is 2300

Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#abs()

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *