A. Petya and strings

Source: Internet
Author: User
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 strings lexicographically.
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 from 1 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.

Sample test (s) 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
  • Solution Description: string processing, comparison by bit, water question

    #include <iostream>#include<cstdio>#include<cstring>#include<cmath>using namespace std;int main(){char a[102];char b[102];int i;scanf("%s",&a);scanf("%s",&b);for(i=0;a[i]!='\0';i++){if(a[i]>='A'&&a[i]<='Z'){a[i]=a[i]+32;}if(b[i]>='A'&&b[i]<='Z'){b[i]=b[i]+32;}if(a[i]>b[i]){printf("1\n");break;}else if(a[i]<b[i]){printf("-1\n");break;}else{continue;}}if(a[i]=='\0'){printf("0\n");}return 0;}

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.