2015年4月25日
摘要: 1 #include 2 void PP(int n) 3 { 4 if(n==0) return; 5 PP(n/10); 6 printf("%d",n%10); 7 } 8 void NP(int n) 9 {10 if(n==0) return;11 ... 阅读全文
posted @ 2015-04-25 18:16 Ricochet! 阅读(228) 评论(0) 推荐(0) 编辑