Geschachtelte while-Anweisungen Innerhalb einer while-Schleife ist eine weitere Schleife erlaubt.
Syntax: while (bedingung_1) { ... ... while (bedingung_2) { ... ... ... ... } ... ... } Beispiel: public class Wwhl04 { public static void main(String args[]) { int i=0, j; while (i++<3) {
j=0;
while (j++<3)
System.out.print(i + " * " + j + " = " + i*j +" ");
System.out.println("");
}
System.exit(0);
}
}
Als Ausgabe erhält man:
1 * 1 = 1 1 * 2 = 2 1 * 3 = 3
2 * 1 = 2 2 * 2 = 4 2 * 3 = 6
3 * 1 = 3 3 * 2 = 6 3 * 3 = 9
|