UVa 1587

题目:https://vjudge.net/problem/UVA-10340

自己的题解:

#include 
#include 
#include 
using namespace std;
int main()
{
	string s,t;
	while(cin>>s>>t){
		if(s.length()>t.length())
			cout<<"No"<temp){
						temp=j;
						flag=1;
						break;
					}
				}
				if(flag==0){
					ok=0;
					break;
				}
			}
			if(ok)
				cout<<"Yes"<
别人的:

#include 
#include 
#include 
using namespace std;
int main()
{
	string s,t;
	while(cin>>s>>t){
		int l1=s.length();
		int l2=t.length();
		int i,j;
		for( i=0,j=0;i

差距呀


你可能感兴趣的:(一般题目,uva)