2014ACM集训13级PK赛2-Somali Pirates

来源:互联网 发布:购买汽车配件的软件 编辑:程序博客网 时间:2024/05/16 17:40

Description

It is said that the famous Somali Pirates hate digits. So their QQ passwords never contain any digit. Given some lines of candidate passwords, you are asked to delete all the digits in the passwords and print other characters in their original order. So the Somali Pirates can use them as their QQ passwords^^

Input

There are multiple test cases. The first line of input is an integer T (T <= 10) indicating the number of test cases.

Each case contains a line indicating a candidate password. The length of the password is between 1 and 20, inclusive. Besides, the password consists of only digits and English letters.

Output

For each candidate password, delete all the digits and print the remaining characters in a line.

Sample Input

2BeatLA1231plus1equals1

Sample Output

BeatLAplusequals

 

 

#include <stdio.h>#include <stdlib.h>int main(){    int N;    char s[100];    char tmp[100];    char *c,*p;    scanf ("%d%*c",&N);    while (N--)    {        p = s;        scanf ("%s",tmp);        c = tmp;        while (*c != '\0')        {            if ((*c >= 'A' && *c <= 'Z') || (*c >= 'a' && *c <= 'z'))            {                *p = *c;                p++;            }            c++;        }        *p = '\0';        puts (s);    }    return 0;}


 

 

0 0
原创粉丝点击