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 }
  • 相关阅读:
    在Objective-C声明Block的几种方式
    属性初始化
    OC协议
    堆排序的OC实现
    iOS 应用性能测试的相关方法、工具及技巧
    墙裂推荐 iOS 资源大全
    剖析@weakify 和 @strongify
    iOS开发大神必备的Xcode插件
    聊聊 KVC 和 KVO 的高阶应用
    TableView的优化
  • 原文地址:https://www.cnblogs.com/z-712/p/7307477.html
Copyright © 2011-2022 走看看