Método Java lang.Integer.toBinaryString()

El método java.lang.Integer.toBinaryString() devuelve una representación de string del argumento entero como un entero sin signo en base 2. Acepta un argumento en el tipo de datos Int y devuelve la string binaria correspondiente.

Sintaxis:

public static String toBinaryString(int num)

Parameter : The function accepts a single mandatory parameter num 
num - This parameter specifies the number to be converted to binary string. 
It is of int data-type 

Valor devuelto: esta función devuelve la representación de string del valor entero sin signo representado por el argumento en binario (base 2).
Ejemplos:

Input : 10 
Output : 1010 

Input : 9
Output : 1001 
// Java program to demonstrate
// java.lang.Integer.toBinaryString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        int l = 10;
        // returns the string representation of the unsigned int value
        // represented by the argument in binary (base 2)
        System.out.println("Binary is " + Integer.toBinaryString(l));
  
        l = 9;
        System.out.println("Binary is " + Integer.toBinaryString(l));
    }
}

Producción:

Binary is 1010
Binary is 1001

Publicación traducida automáticamente

Artículo escrito por gopaldave 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 *