79588551

Date: 2025-04-23 11:57:18
Score: 0.5
Natty:
Report link
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.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: VijayD