how to make 2 nested loops to count to 100

Solutions on MaxInterview for how to make 2 nested loops to count to 100 by the best coders in the world

showing results for - "how to make 2 nested loops to count to 100"
Ilaria
20 Feb 2020
1    for (int i = 0; i <= 9; i++){
2        for (int j = 0; j <= 9; j++){
3            System.out.print(i + "" + j + "\n");
4        }
5    }
6