void PrintN(int n){ for(int i = 0; i <= n;i ++){ //这里写输出语句 } }
void PrintN(int n){ if(n){ PrintN(n - 1) //这里写输出语句 } return ; }