这什么情况?某点连代码都发不了?
符号逻辑还总出错,都什么年代了,App和网页还这么原始?
代码用图片发给书友圈吧。。。。。
#include #include #include #include #include \/\/控制输入#include using namespace std;\/\/定义类型 struct Snake { string name;\/\/名字 int score;\/\/得分 int headx,headY;\/\/脑袋的横纵坐标 int tailx[1000],tailY[1000];\/\/尾巴的横纵坐标,1000个尾巴 int tailLen;\/\/蛇尾巴长度 void speak{ cout<} void laugh{ cout<} void eat{ cout<}};\/\/定义一个墙类型 struct wall { int width;\/\/墙的宽几列 int height;\/\/墙的高几行 char c ;};