View difference between Paste ID: M1EZ73nw and GWn8y6yq
SHOW: | | - or go back to the newest paste.
1
for (int i = 1; i <= 1000; i++) {
2-
System.out.print(i + " ");
2+
	System.out.print(i + " ");
3-
if (i % 10 == 0)
3+
4-
System.out.println();
4+
	if (i % 10 == 0)
5
		System.out.println();
6
}