or download this
if (a && b || c && d || e) // wtf? Don't make me guess what you intend
+ed!
if ((a && b) || (c && d) || e) // clear
if (a && (b || c) && (d || e)) // as clear, but a very different condi
+tion
if (a && (b || (c && (d || e)))) // a different condition
if ((((a && b) || c) && d) || e) // another different condition