Codeforces 96A
Posted commario
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 96A相关的知识,希望对你有一定的参考价值。
#include <iostream> #include <string> #include <cctype> using namespace std; int main() { string str1; string str2; int length; while(cin>>str1>>str2) { length=str1.size(); int i; for(i=0; i<length; ++i) { str1[i]=tolower(str1[i]); str2[i]=tolower(str2[i]); if((str1[i]-‘0‘)>(str2[i]-‘0‘)) { cout<<1<<endl; break; } else if((str1[i]-‘0‘) < (str2[i]-‘0‘)) { cout<<-1<<endl; break; } } if(i==length) cout<<0<<endl; } return 0; }
以上是关于Codeforces 96A的主要内容,如果未能解决你的问题,请参考以下文章
是否有一种非常简单的方法来处理 EDIFACT,例如 D96A?
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
Codeforces 86C Genetic engineering(AC自动机+DP)