1234567891011121314151617181920212223242526272829303132333435363738public class example { public static void main(String[] args) { outerloop: for (int i=0; i < 100; i++) { for (int j=0; j < 100; j++) { if (i+j == 100) { System.out.println(" sucess"); break outerloop; } } } } }
No comments: