WPLIT? if C or Seeples, use goto. if Java, break to label. I don't know if there's a language that supports breaking out of n loops dynamically, that would require more runtime information (loop returns on stack?)
for(float a = 0; a < 2.4; a++) { for (float b = 0; b < 99.3; ++b) { for (float c = 0; c < 35.16; ++c) { for (float d = 0; d < 9.1; ++d) { for (float e = 0; e < 28.3; ++e){ int x = f(); if (x == false) b = 99999999; } } } } }