Welcome, Guest
Username: Password: Remember me
Discussions for CodeTyphon Object Pascal Programming Language
  • Page:
  • 1

TOPIC:

How to convert hex to dec? 8 years 5 months ago #8605

  • usbdoo
  • usbdoo's Avatar Topic Author
  • Visitor
  • Visitor
hex to dec
a7e5f55e1dbb48b799268e1a6d8618a3 -> 223175087923687075112234402528973166755

code java is
BigInteger decimalZOI = new BigInteger(hexZOI, 16);

code Delphi
Unit UBigIntsV4;
i1:=TInteger.create(0);
 if i1.assignHex(ZOI) then CrtnaKoda:=i1.ConvertToDecimalString(false);  
i1.free;

How this make in CT?

Please Log in or Create an account to join the conversation.

Last edit: by usbdoo.

How to convert hex to dec? 8 years 5 months ago #8607

  • usbdoo
  • usbdoo's Avatar Topic Author
  • Visitor
  • Visitor

Please Log in or Create an account to join the conversation.

  • Page:
  • 1