for(int i = 0; i < 3; i++) {
    for(int j = 0; j < 3; j++) {
        System.out.print("x ");
    }
    System.out.println();
}

Was auf der Konsole ausgegeben wird ist (wie ihr wahrscheinlich wisst)

x x x
x x x
x x x

Ich verstehe fast alles. Nur verstehe ich nicht, wieso

System.out.print("x ");

vor der Klammer kommt und

System.out.println();

erst nach der Klammer.