首页 > 编程语言 >C++工程中的(.h文件)和(.cpp)文件如何管理

C++工程中的(.h文件)和(.cpp)文件如何管理

时间:2022-10-02 21:25:10浏览次数:50  
标签:文件 int hpp C++ initiate cpp maze include

整个工程的格式应该是这样的:

#include "initiate_maze.hpp"

void initiate_maze(int n, int m) {
    srand(time(NULL));
    vector<string> things;
    string a = "

标签:文件,int,hpp,C++,initiate,cpp,maze,include
From: https://www.cnblogs.com/algorithm-code/p/16749479.html

相关文章