#include <bits/stdc++.h>
using namespace std;
string st0,st1,st2;
int n;
int b[3];
string my_strcmp(string str1,string str2)
{
if(str1.size()>str2.size())
return str1;
if(str1.size()==str2.size())
{
if(str1.compare(str2)==1)
return str1;
else
return str2;
}
return str2;
}
int main()
{
cin.tie(0);
ios::sync_with_stdio(0);
int i=5;
cin>>n;
while(i--)
{
cin>>st0>>st1>>st2;
cout<<my_strcmp(st0,my_strcmp(st1,st2))<<endl;
}
system("pause");
return 0;
}
輸出答案錯誤,部分測資有對。錯的答案都跟正解位數一樣,想不到錯在哪?