mirror of
https://github.com/github/semantic.git
synced 2024-11-29 02:44:36 +03:00
15 lines
279 B
Java
15 lines
279 B
Java
public class Test {
|
|
|
|
public static void main(String args[]) {
|
|
int [] numbers = {10, 20, 30, 40, 50};
|
|
|
|
for(int x : numbers ) {
|
|
if( x == 30 ) {
|
|
continue;
|
|
}
|
|
System.out.print( x );
|
|
System.out.print("\n");
|
|
}
|
|
}
|
|
}
|