UVa 10340:All in All(字符串)
Posted xietx1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVa 10340:All in All(字符串)相关的知识,希望对你有一定的参考价值。
题目传送门:https://cn.vjudge.net/problem/UVA-10340
简单的字符串题目
AC code:
#include <iostream>
#include <string>
using namespace std;
int main()
string s, t;
while (cin >> s >> t)
unsigned int i = 0, j = 0;
while (i < s.length() && j < t.length())
if (s[i] == t[j])
++i;
++j;
else
++j;
cout << (i == s.length() ? "Yes\\n" : "No\\n");
return 0;
以上是关于UVa 10340:All in All(字符串)的主要内容,如果未能解决你的问题,请参考以下文章