I am looking for something like this:
int nVal = 130;
while(nVal % 6 != 0)
nVal--;
in a while loop without body:
int nVal = 130;
while(nVal-- % 6 != 0)
Of course that way, the --
operator is called once too often.
Any suggestions here or should I go with option #1?