37
38
public class Temp
{
public static void mythrow()
{
System.out.print("LO ");
throw new RuntimeException();
}
public static void main(String [] args)
{
try
{
System.out.print("L1 ");
mythrow();
}
catch(Exception e)
{
System.out.print("L2 ");
}
finally
{
System.out.print("L3 ");
}
System.out.println("L4 ");
}
Answel
Answers
Answered by
0
Answer:
I don't know how to make answer
Answered by
0
Answer:
the answers is
L1 , L0 , L2, L3, L4
Similar questions