自定义函数未被调用

时间:2013-08-01 04:15:19

标签: function scope

我在代码中调用函数时遇到了麻烦。

#include <iostream>
#include <cmath>
#include <cstdlib>

void bunky(int);

int main()
{
    using namespace std;

    bucky(20);

    cin.get();
    return 0;
} 

void bucky(int x)
{
    using namespace std;
    cout << "My favorite number is " << x << endl;
}

当我尝试编译它时,它说,“[错误]'bucky'未在此范围内声明”任何和所有帮助都会很棒。

1 个答案:

答案 0 :(得分:1)

函数声明是错误的更改

 void bunky(int);

  void bucky(int);