大家好!我最近开始学点C++的编程,可在我编译程序时很多都调试不好,你能不能帮我看看?这些问题对于大家来说肯定是很简单的,希望你能帮我看看。期待你的帮助!
今天我写了个这样的程序:
#include
using namespace std;
bool fibon_elem( int , int & );
int main()
{
int pos;
cout << "please enter a position:";
cin >> pos;
int elem;
if ( fibon_elem (pos,elem))
cout << "element #" << pos
<< "is" < else cout << "sorry,could not calculate element #"
<< pos <
}
可在编译后,出现下面的问题,请问要怎么修改?
C:\Dev-Cpp\my projects\412.o(.text+0xb7) In function `main':
[Linker error] undefined reference to `fibon_elem(int, int&)'
C:\Dev-Cpp\my projects\Makefile.win [Build Error] [412.exe] Error 1
我用的编译器是Dev-Cpp。
在此,期待你的回复!!
谢谢了!
--------------------next---------------------
阅读(1317) | 评论(0) | 转发(0) |