標題: 求費氏數列的總和 [打印本頁] 作者: may 時間: 2012-7-9 20:44 標題: 求費氏數列的總和
求費氏數列的總和作者: may 時間: 2012-7-9 21:27 標題: RE: 求費氏數列的總和
#include<iostream>
using namespace std;
int calcu(int);
int total(int);
int main()
{
int x;
cout<<"請輸入欲推算總和到費式數列第幾項次: ";
cin>>x;
cout<<"費式數列中前"<<x<<"項的總和是"<<total(x)<<endl;