A. Petya and Strings 水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Petya and Strings 水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/112/A
#include<bits/stdc++.h>
using namespace std;
string s1,s2;
void f(string &s)
{
for(int i=0;i<s.size();i++) s[i]=tolower(s[i]);
}
int main(void)
{
cin>>s1>>s2;
f(s1),f(s2);
if(s1>s2) cout<<"1";
else if(s1==s2) cout<<"0";
else cout<<"-1";
return 0;
}
以上是关于A. Petya and Strings 水题的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 653A A. Bear and Three Balls(水题)
A. Valera and Antique Items1000 / 水题