/*希望能帮到你*/#include int main(void){ for(int i = 1; i <= 999; ++i) printf("%5d",i); //%5d中5表示字符宽度(可自定义),正数表示右对齐,负数表示左对齐, printf("\n"); return 0;}