Many languages allow stacking statements on a single line. I personally never use it simply because it makes the code so much harder to read (for me at least) later on. I rarely even use single line IF statements hehe.
--- Jem
I have the same kind of approach, it give a more structured appearance to the code.
The same goes for my math expressions, regarding the order of operations. Just to be safe, I put parenthesis on everything.
For example, "x = A * C / B" becomes "x = ((A * C) / B)".
I'm fully aware that in this case it's absolutely redundant, but for more advanced expressions, it really helps keeping everything in place.