public class cabang {
public static void main(String[]args)
{
int i=0, j=0;
while (i<3){
j=0;
while(j<5){
if (j==3)
break;
System.out.println("i = " + i +" j = "+ j);
j++;
}
i++;
}
}}
Tuesday 26 November 2013
Contoh Output Unlabeled Break
Subscribe to:
Post Comments (Atom)
0 Komentar:
Post a Comment