#include<iostream>
#include<string>
using namespace std;
inline bool is_shorter(const string &lft, const string &rht)
{
return lft.size() < rht.size();
}
int main()
{
cout << is_shorter("pezy", "mooophy") << endl;
return 0;
}
6.44
最新推荐文章于 2022-07-26 12:03:06 发布