提交时间:2023-12-16 09:23:40

运行 ID: 116221

#include<iostream> #include<cstring> using namespace std; int a,b,c,d,e,f=1; char x[1005],y[1005]; int main() { cin>>x>>y; a=strlen(x); b=strlen(y); for(c=1;c<=a;c++) { e=0; for(d=f;d<=b;d++) if(y[d]==x[c]) { e=1; f=d; break; } if(e==0) { cout<<"false"; return 0; } } cout<<"ture"; return 0; }