• Somali Pirates(水题)


    Somali Pirates

    Time Limit: 1 Second      Memory Limit: 32768 KB

    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

    2
    BeatLA123
    1plus1equals1
    

    Sample Output

    BeatLA
    plusequals

     1 #include <iostream>
     2 #include <cstdio>
     3 
     4 using namespace std;
     5 
     6 int main()
     7 {
     8     int t;
     9     char c;
    10     cin >> t;
    11     scanf("%c", &c);  //吃掉换行符 
    12     while(t--)
    13     {
    14         while(scanf("%c", &c) && c != '\n')
    15         {
    16             if(c < '0' || c > '9') cout << c;
    17         }
    18         puts("");
    19     } 
    20     return 0;
    21 }
  • 相关阅读:
    codevs2034 01串2
    codevs2622数字序列( 连续子序列最大和O(n)算法)
    codevs3008加工生产调度(Johnson算法)
    codevs1955光纤通信(并查集)
    codevs4203山区建小学
    codevs2618核电站问题
    常用端口
    ntp时间同步服务器
    date linux系统校正时间
    用户切换
  • 原文地址:https://www.cnblogs.com/cszlg/p/2912826.html
Copyright © 2020-2023  润新知