Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341155
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:08:07

大家好!我最近开始学点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) |
给主人留下些什么吧!~~