class D
{
public static void main(String[] args){
try
{
int a=10,b=2,c;
c=a/b;
System.out.println(c);
}
catch(Exception a)
{
System.out.println("Any error found");
}
finally
{
System.out.println("no error found");
}
System.out.println("system ended");
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter