codeforces 112A Petya and Strings

来源:互联网 发布:电脑同时安装软件 编辑:程序博客网 时间:2024/06/06 02:57
A. Petya and Strings
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two stringslexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corresponding lowercase letter. Help Petya perform the comparison.

Input

Each of the first two lines contains a bought string. The strings' lengths range from1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.

Output

If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.

Examples
Input
aaaaaaaA
Output
0
Input
absAbz
Output
-1
Input
abcdefgAbCdEfF
Output
1
Note

If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site:

  • http://en.wikipedia.org/wiki/Lexicographical_order



水题

AC:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char a[105],b[105];
    gets(a);
    gets(b);
    int len=strlen(a);

    for(int i=0;i<len;i++)
    {
        if(a[i]>='A'&&a[i]<='Z')
            a[i]+=32;
        if(b[i]>='A'&&b[i]<='Z')
            b[i]+=32;
        if(a[i]-b[i]==0&&i==len-1)
            printf("0\n");
        if(a[i]-b[i]>0)
        {
            printf("1\n");
            break;
        }
        if(a[i]-b[i]<0)
        {
            printf("-1\n");
            break;
        }
    }


    return 0;
}


原创粉丝点击