第十二週—C語言 遞歸求解(爬樓梯)

/* 煙臺大學計算機學院 2016 做者:張威 完成日期:2016年11月18日 問題及描述:爬樓梯地方法種數,一次能夠爬一階或兩階。 */ #include <stdio.h> #include <stdlib.h> int f(int n); int main() { int n,t; scanf("%d",&n); t=f(n); printf("%d",t)
相關文章
相關標籤/搜索