I'm using VB.NET but any other known language should be fine as long as it uses basic features.
My task is to create astrological compatibility chart, when two users have certain astrological sign as inputs and there is a text about those signs compatibility.
for those who are unaware of astrological signs but still want to help, there are 12 signs. Each sign has different compatibility with other sign or itself. So basically i get into 12^2-12 conditions. ie. Aries with Cancer "do not match at all" so I can save one record of that issue as backwards it is the same (thus -12 at the end).
Question is simple is there any other way to create this except of using 12^2-12 case issues...
ie. pseudo code
if sign1=1 and sign2=4
return "do not match at all"
...