Decimal to Hexadecimal Converter in Java

后端 未结 13 2362
有刺的猬
有刺的猬 2020-12-03 13:57

I have a homework assignment where I need to do three-way conversion between decimal, binary and hexadecimal. The function I need help with is converting a decimal into a he

13条回答
  •  独厮守ぢ
    2020-12-03 14:43

    I will use

    Long a = Long.parseLong(cadenaFinal, 16 );
    

    since there is some hex that can be larguer than intenger and it will throw an exception

提交回复
热议问题