//双字串输入拆分+双命令拆分+vector容器,简单直接 #include<iostream> #include<algorithm> #include<vector> using namespace std; int main(){ string str; string sigle = "reset"; vector<vector<string>> tp1{{"reset","board","board fault"},{"board","add","where to add"}, ...