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 }
  • 相关阅读:
    python模块整理9ini配置ConfigParse模块
    python模块整理12pdb调试模块
    django临时
    django实战1使用视图和模板显示多行
    python模块整理10xml.dom.minidom模块
    django_book学习笔记1django介绍
    构建之法阅读笔记 01
    人月神话阅读笔记 06
    人月神话阅读笔记 05
    第四周学习进度
  • 原文地址:https://www.cnblogs.com/z-712/p/7307477.html
Copyright © 2011-2022 走看看