#include<stdio.h>
#include"a.cpp"
#include"b.cpp"
#include"c.cpp"
int main()
{
//主函数就能直接调用其它文件里的子函数了
//基本的功能模块
//void 成绩查询();
//void 姓名查询();
//void 密码登陆();
return 0
}
void 成绩查询()
//假如这个子函数保存文件名为a.cpp
{......}
void 姓名查询()
//假如这个子函数保存文件名为b.cpp
{......}
void 密码登陆()
//假如这个子函数保存文件名为c.cpp
{......}
如果将a.cpp,b.cpp和c.cpp中的函数作为外部函数使用,在d.h中对函数做出申明,这样就可以作为一个工程使用了。
就是将
#include"a.cpp"
#include"b.cpp"
#include"c.cpp"换成#include"d.h"就行了。