Chri_K

字符串(string)(字符串相加)
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
    int t;
    cin>>t;
    string a,b;
    while(t--)
    {
        cin>>a>>b;
        if(a+b>b+a)
        {
            cout<<">"<<endl;
        }
        else if(a+b<b+a)
        {
            cout<<"<"<<endl;
        }
        else
        {
            cout<<"="<<endl;
        }
    }
    return 0;
}

 

posted on 2020-10-29 13:13  Chri_K  阅读(129)  评论(0编辑  收藏  举报