14 lines
161 B
C++
14 lines
161 B
C++
#include<iostream>
|
|
#include"maze_func.h"
|
|
#include"maze_parameter.h"
|
|
using namespace std;
|
|
|
|
|
|
|
|
/*---下面是主函数---*/
|
|
int main()
|
|
{
|
|
explore();
|
|
output();
|
|
}
|