分类: C/C++
2014-02-09 18:14:07
点击(此处)折叠或打开
点击(此处)折叠或打开
点击(此处)折叠或打开
zhangman11232014-03-05 17:31:28
jie2515:#include <iostream>
//#include "add.h"
int main()
{
int add(int x, int y);
using namespace std;
cout << "The sum of 3 and 4 is " << add (3,4) << endl;
return 0;
}
int add (int x, int y){return x+y;}
不要头文件也可以编译运行,不会是把头文件写错了吧
你那源码在同一个文件里面吧。 如果没有加 include "add.h" 会报错的
回复 | 举报