Question: Write a Prolog predicate hextodec(H, D), where H is a list of hexadecimal digits and D is the equivalent decimal number. Test your predicate on
Write a Prolog predicate hextodec(H, D), where H is a list of hexadecimal digits and D is the equivalent decimal number.
Test your predicate on the following.
hextodec([a], D) D = 10
hextodec([1, f], D) D = 31
hextodec([5, a, 6, b, 7, c, 8, d, 9, e], D) D = 388350381470
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
