互いに3つのループがある場合、どのようにして上位レベルのループに分割できますか?
がある
while (abc) {
for (int dep =0 ; dep<b ; dep++) {
for (int jwe=0 ; jwe<g ; jwe++) {
if (! (ef || hf) ) {
//here is where i want to break to loop while
//or in other purpose (other situation) i need
//to know how i could break to first loop
//i mean (for (int dep =0 ; dep< b ; dep++)
}
}
}
}
誰かが私を助けてくれませんか、どのようにしたら、私はwhileループに割り込むことができますか、またはどのように私は最初のループ「for」に割り込むことができますか。