摘要: include<stdio.h> #include<windows.h> #include<conio.h> #include<time.h> #include<math.h> //地图边长L,包括迷宫主体20,外侧的包围的墙体2,最外侧包围路径2(之后会解释) //可根据需要修改,有上限 #def 阅读全文
posted @ 2023-05-01 20:17 yuooo 阅读(388) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> #include <conio.h> //定义结构体记录学生基本信息 struct messages { int Class[5]; //班 阅读全文
posted @ 2023-05-01 20:16 yuooo 阅读(99) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <Windows.h> #include <stdlib.h> #include <time.h> #include <conio.h> #define ROW 29 //游戏区行数 #define COL 20 //游戏区列数 #define 阅读全文
posted @ 2023-05-01 20:16 yuooo 阅读(92) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> //创建结构体并命名 typedef struct Node //typedef用于对struct的重命名 { int i; struct Node *next;}LNode, *LinkList; //定义一个结构体指针 阅读全文
posted @ 2023-05-01 20:14 yuooo 阅读(207) 评论(0) 推荐(0)