Well i don't know how to name the post but this looks good.
Here is a piece of code!
}Code:int z=1;
int j=1;
label1:
if (x>1){
System.out.print("!");
j++;
if (j>z){
j=1;
z++;
System.out.println( );
}
if (z<=x)
break label1;
Obviously you have already understand the problem.Is there another way to do what the "break label" does but for a simple if?

