POJ 1936 All in ALL

mac2022-06-30  103

这题也是水题,暴力遍历0MS水过轻松加愉快。

不解释直接贴代码:

#include <stdio.h> #include <string.h> int main() { char s1[100005],s2[100005]; while(scanf("%s",s1)!=EOF) { scanf("%s",s2); int len1=strlen(s1); int len2=strlen(s2); int i=0,j=0; while(1) { if(i==len1&&j<=len2) { printf("Yes\n"); break; } if(j==len2&&i<len1) { printf("No\n"); break; } if(s1[i]==s2[j]) { i++; } j++; } } return 0; }

转载于:https://www.cnblogs.com/lin375691011/p/3996809.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)