79705156

Date: 2025-07-17 16:51:17
Score: 1
Natty:
Report link
#include<stdio.h>

int main(void)
{
    int i;
    int j;

for(i=1;i<5;i++){
        for(j=1;j<5;j++){
            if(i==j)
                printf("%d\t", j);
            else
                printf("%d\t", 0);
        }
        printf("\n");
 }

return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GOLFF PWD