mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
17 lines
204 B
Java
17 lines
204 B
Java
public class pr13107_3
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
for (int i = 0; i < 1; i++)
|
|
{
|
|
try {
|
|
System.out.println(i);
|
|
}
|
|
finally {
|
|
if (i == 3)
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|