class Ninth
{
public static void main(String args[])
{
boolean t=true;
first:{
second:{
third:{
System.out.println("Before the Break");
if(t)
break second;
System.out.println("This wont execute");
}
System.out.println("This wont execute");
}
System.out.println("This is after second block");
}
}
}
No comments:
Post a Comment