Page 2 of 2

Posted: Sun Feb 27, 2011 10:08 pm
by kethrain
i need to learn more and more .................its WOW for me!!!!!!![/i]

Posted: Tue Jul 19, 2011 8:31 pm
by PushyFurball
I must be retarded, had to use a "Decimal to Hex Converter"... Wikipedia here I come.

Posted: Sun Aug 07, 2011 11:07 am
by ninjaface567
i used google
just type "233 in hex"
and theres your answer

Posted: Sun Sep 04, 2011 4:19 pm
by randomitemodda
Not Much OF a Challenge

Posted: Thu May 03, 2012 10:22 pm
by lortedy
Use "calc.exe" in Scientific Mode and input number then set numeration base to Hex.
=> E9

Manual solution:

Code: Select all

233 % 16 = 14 r 9
14 % 16 = 0 r 14 (14 = E in hex)
=> E9

Python:

Code: Select all

nr = 233
print hex(nr)
=> 0xe9

Posted: Tue Aug 27, 2019 10:59 am
by RixNguyen
This is basic for programmer. It's so easy. :lol: :lol: :lol:

Posted: Mon May 24, 2021 1:17 am
by mikestoj
solved