Finish code to Convert Decimal to Binary, bin to dec, hexadec to dec, dec to hexadec, hexadec to binary & binary to hexadec. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Finish code to Convert Decimal to Binary, bin to dec, hexadec to dec, dec to hexadec, hexadec to binary & binary to hexadec.

public class Dec2Bin { public static void main(String[] args){ int num = 355; public static String dec2Bin(int preOp)// this is the integer before the operation. String tmpStr = null; Integer quo; Integer = mod; quo = preOp/2; mod = preOp%2; if(quo == 0) return tmpStr; else return tmpStr+dec2Bin(int preOp); } }

1st Apr 2019, 2:36 AM
Heidi Terebelo
Heidi Terebelo - avatar
1 Answer
0
1. First of all your method cannot be inside main 2. what is the statement "Integer=mod" 3. return tmpStr+dec2Bin(int preOp); // why do you use int inside parentheses ? 4. There are missing '}' 5. Add your code to playground and share the link
1st Apr 2019, 8:22 AM
Prokopios Poulimenos
Prokopios Poulimenos - avatar