gpt4 book ai didi

c++ - 找不到为什么会出现错误

转载 作者:太空狗 更新时间:2023-10-29 19:38:00 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
c++ compiling “error: expected constructor, destructor, or type conversion before ‘=’ token ”

这是我的 C++ 程序。当我编译它时,出现错误:

Line 6: Expected constructor, destructor or type conversion before '=' token.

现在我看不出它在代码方面有什么问题(即逻辑上它可能是)并且我无法调试这个错误。有人可以告诉我解决此错误的方法吗?

#include<iostream>
using namespace std;

int go[10000],f[10000],n,i;
f[0]=1;
f[1]=1;
go[0]=1;
go[1]=1;

int g(int x) {
return (f[x-1] + go[x-1]);
}

int main() {
cin>>n;

for (i=2;i<=n;i++) {
f[i]=f[i-1]+f[i-2]+(2*g(i-2));
}
cout<<f[i];
system("PAUSE");
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com