zoukankan      html  css  js  c++  java
  • A

    Problem description

    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.

    Examples

    Input

    aaaa
    aaaA

    Output

    0

    Input

    abs
    Abz

    Output

    -1

    Input

    abcdefg
    AbCdEfF

    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.

    解题思路:先把两个字符串中的大写字母全部换成小写字母,然后用strcmp(s1,s2)函数比较两个字符串的大小,水过。

    AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int main(){
     4     char s1[105],s2[105];
     5     cin>>s1>>s2;
     6     for(int i=0;s1[i]!='';++i){
     7         if(s1[i]>='A'&&s1[i]<='Z')s1[i]+=32;
     8         if(s2[i]>='A'&&s2[i]<='Z')s2[i]+=32;
     9     }
    10     if(strcmp(s1,s2)>0)cout<<"1"<<endl;
    11     else if(strcmp(s1,s2)<0)cout<<"-1"<<endl;
    12     else cout<<"0"<<endl;
    13     return 0;
    14 }
  • 相关阅读:
    【leetcode】Reverse Words in a String
    使用windows的远程桌面连接连接Ubuntu
    Ubuntu下快速安装php环境
    面试题之【打印1到最大的N位数】
    gnuplot安装问题(set terminal "unknown")
    java获取文件的md5值
    jQuery全选/反选checkbox
    PowerDesigner反向工程,根据Oracle数据库结构生成ER图(2014-3-25记)
    SVN服务端启动解决方案(2013-12-10 记)
    Oracle数据库DOC命令导入导出(2014-3-10记)
  • 原文地址:https://www.cnblogs.com/acgoto/p/9112319.html
Copyright © 2011-2022 走看看