CodeForces

来源:互联网 发布:查询linux ipv6 arp 编辑:程序博客网 时间:2024/06/05 21:01

time limit per test
 2 seconds
memory limit per test
 256 megabytes
input
 standard input
output
 standard output

Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters, it:

  • deletes all the vowels,
  • inserts a character "." before each consonant,
  • replaces all uppercase consonants with corresponding lowercase ones.

Vowels are letters "A", "O", "Y", "E", "U", "I", and the rest are consonants. The program's input is exactly one string, it should return the output as a single string, resulting after the program's processing the initial string.

Help Petya cope with this easy task.

Input

The first line represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters and its length is from 1 to 100, inclusive.

Output

Print the resulting string. It is guaranteed that this string is not empty.

Sample test(s)
input
tour
output
.t.r
input
Codeforces
output
.c.d.f.r.c.s
input
aBAcAba
output
.b.c.b
水题,字符串处理,删除所给字符串中的“A,E,I,O,U,Y”及其小写字符。

#include<iostream>#include<string>using namespace std;int main(){    string s;    while(cin>>s)    {        for(int i=0;i<s.length();i++)        {            if(s[i]=='a'||s[i]=='A'||s[i]=='o'||s[i]=='O'||s[i]=='y'||s[i]=='Y'||s[i]=='e'||s[i]=='E'||s[i]=='u'||s[i]=='U'||s[i]=='i'||s[i]=='I')            {                continue;            }            else            {                if(s[i]>='A'&&s[i]<='Z')                {                    s[i]=tolower(s[i]);                }                cout<<"."<<s[i];            }        }         cout<<endl;    }}


原创粉丝点击