#include "stdio.h"void p(int w){ if(w>0) { p(w-1); printf("%4d",w);//输出w p(w-1); }}void main(){ p(3); printf("\n");}