To find all the 3 digit multiples of 8 with those numbers, list out all possible unit digits (must be divisible by 2):
2
4
6
Now, let's find the possible last 2 digts (must be divisible by 4):
12
16
24
32
36
52
56
64
Now, let's find the possible 3 digit numbers divisible by 8:
Note, these numbers should have last two digits divisible by 4
Now, lets append 1 to
12
16
24
32
36
52
56
64
and start checking
Is 112 divisible by 8 ?
let divible by 4 first, we have 100/4 +12/4 = 25+3 (odd +odd) = even ; ie, has another 2 as factor, hence divisible by 8
if 1 is appended before, we must have 25(odd)+ (last 2 digits /4) odd = even if we want it to be divisible by 8.
List out numbers of the form odd *4 from our list,
similarly for digit 2 appended before, we will have 50(even)+even =even;
List out numbers of the form even*4 from our list,
By following this, you can quickly get all possible multiples of 8 using the digits 1 to 6.
You can then choose 2 numbers from 3 and arrange them to get the final answer.