gpt4 book ai didi

c++ - Eclipse C++ 不允许我使用全局变量?

转载 作者:搜寻专家 更新时间:2023-10-30 23:51:45 25 4
gpt4 key购买 nike

我试图让这个递归程序计算它调用自己的次数,我打算使用一个全局变量来保持计数,但 Eclipse 出于某种原因无法识别它。这是我的代码:

#include <iostream>
#include <cstdlib>
using namespace std;

int count = 0;

int fib(long int);


int main()
{
long int number;
cout << "Enter a number => ";
cin >> number;
cout << "\nAnswer is: " << fib(number) << endl;
return 0;
}

int fib (long int n)
{
//cout << "Fibonacci called with: " << num << endl;
if ( n <0 )
{
cout <<" error Invalid number\n";
exit(1);
}
else if (n == 0 || n == 1)
return 1;
else{
count++;
return fib(n-1) + fib(n-2);}
cout << count;

}

每当我最初声明 count 时,它甚至不将其识别为变量,有人知道这是什么原因吗?

最佳答案

你的问题在这里:

using namespace std;

它引入了std::count from the algorithm header ,所以现在 count 是不明确的。这就是为什么人们被告知不要使用 using namespace std; 的原因。相反,删除该行并放置 std::cout 而不是 cout (对于 cinendl 也是如此).

关于c++ - Eclipse C++ 不允许我使用全局变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53607327/

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