#include<iostream> #include<string> using namespace std; bool isValid(string s, char& op, int& op_xy); //判定指令是否合法 int moveCoord(string s, int& x, int& y); //移动坐标 bool isValid(string s, char& op, int& op_xy) { int len = s.length(); if (len <= 1) { //...