Codeforces 112A

Posted commario

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 112A相关的知识,希望对你有一定的参考价值。

#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 112A的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)

CodeForces 931F Teodor is not a liar!

这个c代码有啥问题?