mirror of
https://github.com/github/semantic.git
synced 2024-12-20 21:31:48 +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");
|
||
|
}
|
||
|
}
|
||
|
}
|