- 1
41 code project????(java)
41 code project????(java) help me
2 Réponses
+ 2
Little tip, all you need to convert a decimal integer to binary format is this simple code.
String binary="";
while(num > 0) {
binary = (num%2)+binary;
num /= 2;
}
Now create a class that runs that code for a specified integer.
Happy Coding 💗
0
Hey