mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
26 lines
334 B
Java
26 lines
334 B
Java
|
class pr13107
|
||
|
{
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
for (int i = 0; i < 1; i++) {
|
||
|
String s = "A";
|
||
|
|
||
|
if (s == "A")
|
||
|
continue;
|
||
|
|
||
|
try{
|
||
|
try{
|
||
|
System.out.println(s);
|
||
|
}
|
||
|
finally{
|
||
|
if (s != "A")
|
||
|
throw new Error();
|
||
|
}
|
||
|
}
|
||
|
catch(Exception e){
|
||
|
s = "B";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|