新建一个头文件 myadd.h
#ifndef MYADD_H #define MYADD_H int fun_add(int a,int b); #endif
新建一个源文件 myadd.cpp
#include "myadd.h" int fun_add(int a,int b) { return a+b; }
主程序:
#include <iostream> #include "myadd.h" using namespace std; int main() { int a=10; int b=20; cout<<fun_add(a,b); return 0; }
OK。
时间: 2024-10-10 21:20:46