void main() { for(int i = 0; i < 10; i++) { if(i == 4) { continue; } test(i); } for(int x = 0; x < 3; ++x) { if(x == 1) { continue; } for(int y = 0; y < 3; y++) { test(x); if(x == 2) { continue; } test(y); } int i = 0; while(i < 5) { i++; if(i == 3) { continue; } test(i); } continue; } int i = 0; while(i < 5) { i++; if(i == 3) { continue; } test(i); } }