题意
若输入的是Jessie或jessie,输出Good guy!,否则输出Dare you say that again?
分析
水题,学习一下string直接转小写的操作,方便。
#includeusing namespace std;typedef long long ll;const int maxn = 1e5 + 10;int main(){ int t; cin>>t; string s; while(t--){ cin>>s; transform(s.begin(),s.end(),s.begin(),::tolower); if(s=="jessie") puts("Good guy!"); else puts("Dare you say that again?"); } return 0;}