Java for loop result of nested for loop

Question

What is the output of the following code?

public class Main {
  public static void main(String[] args) {
    for (int i = 1; i <= 10; i++) {
      for (int j = 1; j <= 5; j++)
        System.out.print('@');

      System.out.println();// w  w w. j  a  va 2  s . c  o m
    }
  }
}


@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@



PreviousNext

Related