#include <future> #include <iostream> #include <iterator> #include <utility> #include <vector> #include <algorithm> using namespace std; bool isContant(int x,int y){//判断x是否包含y string x_ctr,y_ctr; if(y==0){ int temp=x; while(temp){ ...