递归求斐波那契数列前n项 用递归法求fibonacci数列 C语言,用递归法求斐波那契数列第n项值,不要复制粘贴的?#Includeint fun(int n){if(n==1 | | n==2)//递归结束的条件,找到前两项r... 2021-03-12 2585次浏览