Logo

Programming-Idioms

History of Idiom 76 > diff from v64 to v65

Edit summary for version 65 by programming-idioms.org:
[Java] +DemoURL

Version 64

2020-05-21, 22:06:51

Version 65

2020-11-25, 21:48:54

Idiom #76 Binary digits from an integer

Create the string s of integer x written in base 2.

E.g. 13 -> "1101"

Idiom #76 Binary digits from an integer

Create the string s of integer x written in base 2.

E.g. 13 -> "1101"

Variables
s,x
Variables
s,x
Extra Keywords
int radix
Extra Keywords
int radix
Code
String s = Integer.toBinaryString(x);
Code
String s = Integer.toBinaryString(x);
Doc URL
https://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#toBinaryString%28int%29
Doc URL
https://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#toBinaryString%28int%29
Demo URL
https://repl.it/@ProgIdioms/GuiltyInexperiencedQueryoptimizer