Skip to content

Instantly share code, notes, and snippets.

@aka56kg
aka56kg / IntegerToBinary.java
Created December 23, 2020 10:44 — forked from sadedv/IntegerToBinary.java
Перевести число в различные системы счисления - Java (в шестнадцатиричную, бинарную (двоичную)) Integer to Binary, to Hex and to Octal
public class Main {
public static void main(String[] args) {
Integer number = 255;
// Бинарный формат числа
String convert = Integer.toBinaryString(number);
System.out.println(convert);
// Восьмиричная форма
convert = Integer.toOctalString(number);