#include<iostream> using namespace std; void printf1(int n) { if(n==1)//结束条件 { printf("1\n"); return ; } else { printf1(n-1); ...