using namespace std;
//fibon_elem()的前置声明(forward declaration).
//目的是让编译器知道这个函数的存在……
bool fibon_elem(int, int&);
int main()
{
int pos;
cout << "Pleace enther a position:";
cin >> pos;
int elem;
if (fibon_elem(pos, elem))
cout << "element #" << pos
<< "is" << elem << endl;
else cout << "Sorry。Could not calculate element #"
<< pos << endl;
}
这段代码为什么会说架构错误?
把报错信息一起发出来看看
– 不如隐茶去 5年前