Lösung Diekhaus Übung 7 Nr. 1b:

public class hg71b {

	public static void main( String[] args ) {
		
		// Anwendungscode
	for (int x=1;x<=3;x++){
		for (int y=1;y<=10;y++){
			System.out.println(y + " * " + x + " = " +(x*y));
		}
		System.out.println("\n-------------------\n");
	}
	}
}

																
[Index]