码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces水题100道 第二十四题 Codeforces Beta Round #85 (Div. 2 Only) A. Petya and Strings (strings)

时间:2016-07-20 22:43:37      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://www.codeforces.com/problemset/problem/112/A
题意:忽略大小写,比较两个字符串字典序大小。
C++代码:

技术分享
#include <cstdio>
#include <cstring>
int cmp(char *s, char *t)
{
    while (*s)
    {
        if (*s <= Z) *s += 32;
        if (*t <= Z) *t += 32;
        if (*s < *t) return -1;
        else if (*s > *t) return 1;
        s ++;
        t ++;
    }
    return 0;
}
int main()
{
    char *s = new char[110];
    char *t = new char[110];
    scanf("%s%s", s, t);
    printf("%d\n", cmp(s, t));
}
C++

 

codeforces水题100道 第二十四题 Codeforces Beta Round #85 (Div. 2 Only) A. Petya and Strings (strings)

标签:

原文地址:http://www.cnblogs.com/moonlightpoet/p/5689752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!