给定路径和骰子的初始状态,滚动骰子,记录骰子面朝下的数字 ************************************ 之前忘记组数T了,更新上 #include <iostream> #include <string> #include <vector> using namespace std; struct Pos { int x; int y; Pos(int x_, int y_) : x(x_), y(y_) {} }; int status[6] = { 6,1,2,5,4,3 }; enum step { left, r...