There is a subroutine, HEX(), that takes a denary number between 10 and 15 and returns the corresponding hexadecimal number. E.g. HEX(10) would return "A“, HEX(15) would return "F“.
Write an algorithm, using the subroutine HEX(), to convert any whole decimal number between 0 and 255 into a 2 digit hexadecimal number.
Remember the DIV keyword is for 'floor division' meaning you ignore any remainder
Construct a pseudocode answer by drag&dropping and reordering lines from the left to the right.