How to format Int to binary data in Scala

3 Answers

0 votes
printf("Binary: %s\n", 378.toBinaryString) 


 
 
/*
run:
   
Binary: 101111010
 
*/

 



answered Dec 1, 2024 by avibootz
0 votes
printf("Binary: %016d\n", 378.toBinaryString.toInt)

 
 
/*
run:
   
Binary: 0000000101111010
 
*/

 



answered Dec 1, 2024 by avibootz
0 votes
def toBinary(i: Int, digits: Int = 8) =
    String.format("%" + digits + "s", i.toBinaryString).replace(' ', '0')

printf("Binary: %s\n", toBinary(378, 16))

 
 
/*
run:
   
Binary: 0000000101111010
 
*/

 



answered Dec 1, 2024 by avibootz
...