for (int col = 0; col < 21; col++){ if(col==0) System.out.printf("%4s",""); else System.out.printf("%4s", col); }
Replace the second for-loop with the above code, and it will work.
for-loop