#include <stdio.h> int main() { const int n = 4; // 将4改为其它数字看看 for( int i=0; i<n; ++i ) printf( "%*s%0*d\n", n-i-1, "", 2*i+1, 0 ); return 0; }