摘要: 1、将一个数倒转输出: (1)限定使用递归,第一反应想到的方法: 1 #include 2 int array[10]; 3 int i=0; 4 void convert(int n){ 5 if(n==0) 6 return; 7 else{ 8 ... 阅读全文