建立一个console项目
以dev为例,在【文件】【新建】【项目】,新建一个console项目。
头文件
添加新文件,输入说要使用函数的声明,保存为.h文件。
cpp文件
定义在.h中声明的函数,保存为.cpp文件。 - #include<iostream>
- #include"chen.h"//不要忘记这个
- int add(int a,int b)
- {
- return a + b ;
- }
复制代码
main.cpp
在主函数里面调用函数 - #include <iostream>
- #include "chen.h"
- using namespace std;
- /* run this program using the console pauser or add your own getch, system("pause") or input loop */
-
- int main(int argc, char** argv) {
- cout << add(3,5) << endl;
- return 0;
- }
复制代码
运行结果: |