Oh, yes, that is rather easy/fun. All you do is use mod values and you don't even need to know what that means!
Basically you do X/A and you take the whole part and the remainder. A is your base. so if you do x=117 and A=10 you get 11 and 7. 7 is the last digit. So:
117→q
117/10: q=11 7=r
11/10 : q=1 1=r
1/10 : q=0 1=r
so your number is 117 in base 10 (go figure). Now for base 16:
117/16: q=7 5=r
7/16 : q=0 7=r
so in hex, 117 is 75h
Just remember that after 9 you start to use letters starting at A.