1public class Test {
2
3 public static void main(String args[]) {
4 int [] numbers = {10, 20, 30, 40, 50};
5
6 for(int x : numbers ) {
7 if( x == 30 ) {
8 break;
9 }
10 System.out.print( x );
11 System.out.print("\n");
12 }
13 }
14}