摘要: http://blog.csdn.net/ysuncn/article/details/1788187 阅读全文
posted @ 2016-02-25 21:04 伟大的臭猪猪 阅读(190) 评论(0) 推荐(0)
摘要: 下面是个关于递归调用简单但是很能说明问题的例子: [cpp] view plain copy /*递归例子*/ #include<stdio.h> void up_and_down(int); int main(void) { up_and_down(1); return 0; } void up_ 阅读全文
posted @ 2016-02-25 13:40 伟大的臭猪猪 阅读(555) 评论(0) 推荐(0)