選作 有五我的圍坐在一塊兒,第五個比第四個大2歲;第四比第三大2歲.......第一人10歲,利用遞歸求第五人

#include <stdio.h> #include <stdlib.h> int age(int n) { int c; if(n==1) c=10; else c=age(n-1)+2; return c; } void main() { printf("第五我的的年齡是%d",age(5)); } 心得體會:瞭解調用函數使用 we
相關文章
相關標籤/搜索