zoukankan      html  css  js  c++  java
  • A. Petya and Strings

    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 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
     1 #include <iostream>
     2 #include <stdio.h>
     3 using namespace std;
     4 char a[110],b[110];
     5 int main(){
     6     int i;
     7     scanf("%s",a);
     8     scanf("%s",b);
     9     for(i=0;a[i]!='';i++){
    10         if(a[i]>='A'&&a[i]<='Z' )
    11             a[i]+=32;
    12         if(b[i]>='A'&&b[i]<='Z' )
    13             b[i]+=32;
    14             if(a[i]>b[i]) {
    15                 printf("1
    ");
    16                 break;
    17             }
    18             else if(a[i]<b[i]){
    19                 printf("-1
    ");
    20                 break;
    21             }
    22             else continue;
    23     }
    24     if(a[i]=='')  printf("0
    ");
    25     return 0;
    26 }
  • 相关阅读:
    时寒冰先生文章转载
    [转]迭代经理是什么角色
    [转]如何抉择重构?
    面面俱到:SQL SERVER 2008主数据管理
    [转]用户故事【任务分解】和软件开发不得不说的故事
    读书心得3:去功利化&推荐两本书 转时寒冰
    沟通模式中的方式与过程
    系统分析与设计笔记 -系统类型
    加入敏捷团队宣言
    [转]敏捷进展学习 新项目Sprint
  • 原文地址:https://www.cnblogs.com/z-712/p/7307477.html
Copyright © 2011-2022 走看看