Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~115 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for jimbonk8e

heres what i have but it wont paste the letters to the corresponding digit public String Hex(int z) { num=z; while(num>=1) { z = num % 16; hex = z + hex; num /= 16; switch (z) { case 10: hex ="a"; break; case 11: hex ="b"; break; case 12: …

Member Avatar for jwenting
0
115