#include <bits/stdc++.h> #include <iostream> using namespace std; // 移动坐标轴 int main() { string str; while (getline(cin, str)) { // 注意 while 处理多个 case vector<string> vec; string temp; // 把所有坐标放进一个数组中 for (int i = 0; i < str.size(); i++) { ...