codeforces——59A——Word

来源:互联网 发布:剑灵灵女捏脸数据下载 编辑:程序博客网 时间:2024/06/17 02:44
A. Word
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At that as little as possible letters should be changed in the word. For example, the wordHoUse must be replaced with house, and the word ViP — with VIP. If a word contains an equal number of uppercase and lowercase letters, you should replace all the letters with lowercase ones. For example,maTRIx should be replaced by matrix. Your task is to use the given method on one given word.

Input

The first line contains a word s — it consists of uppercase and lowercase Latin letters and possesses the length from1 to 100.

Output

Print the corrected word s. If the given words has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.

Examples
Input
HoUse
Output
house
Input
ViP
Output
VIP
Input
maTRIx
Output
matrix水题。小写字母数量大于等于大写字母数量,则全部小写,否则全部大写。
#include<stdio.h>#include<iostream>#include<cstring>#include<cmath>#include<algorithm>#include<map>using namespace std;int main(){    char s[108];    while(~scanf("%s",s))    {        int n=strlen(s),big=0,small=0;        for(int i=0; i<n; i++)            if(s[i]>=97)                small++;            else                big++;        if(small>=big)        {            for(int i=0; i<n; i++)                if(s[i]<97)                    s[i]+=32;        }        else            for(int i=0; i<n; i++)                if(s[i]>=97)                    s[i]-=32;        cout<<s<<endl;    }    return 0;}

 
原创粉丝点击