I'm trying to generate a truth table of "integers". First of all I need to have 2 lists of integers just like this table right here:
1 1
1 2
2 1
2 2
And then I need to use Boolean operators to generate the table like this:
1 1 2 1 2 2
1 2 1 2 2 1
2 1 1 2 1 2
2 2 2 1 1 1
I checked out some related questions like: Generating truth tables in Java or boolean operations with integers but I still don't know how to write it in VB.net. So I appreciate your help and time. :) Thank you!