Geschachtelte for-Anweisungen Innerhalb einer for-Schleife ist eine weitere Schleife erlaubt.
Syntax: for (ausdruck_1; bedingung; ausdruck_2) { ... ... for (ausdruck_1; bedingung; ausdruck_2) { ... ... ... ... } ... ... } Beispiel: public class Wfor04 { public static void main(String args[]) { int i, j; for (i=1; i<4; i++)
{
for (j=1; j<4; j++)
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
|