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

POJ 1951

时间:2015-02-14 00:51:50      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

直接模拟就好,这里利用了scanf不读空格的优势吧。。

#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
using namespace std;

char st[100];
bool vis[300];

int main()
{
    //freopen("t.txt", "r", stdin);
    bool first = true;
    memset(vis, 0, sizeof(vis));
    vis[‘A‘] = true;
    vis[‘E‘] = true;
    vis[‘I‘] = true;
    vis[‘O‘] = true;
    vis[‘U‘] = true;
    while (scanf("%s", st) != EOF)
    {
        int len = strlen(st);
        bool did = false;
        for (int i = 0; i < len; i++)
            if (!vis[st[i]])
            {
                if (st[i] <= ‘Z‘ && st[i] >= ‘A‘)
                    vis[st[i]] = true;
                if (!did)
                {
                    did = true;
                    if (st[i] <= ‘Z‘ && st[i] >= ‘A‘)
                    {
                        if (first)
                            first = false;
                        else
                            putchar(‘ ‘);
                    }
                }
                putchar(st[i]);
            }
    }
    putchar(‘\n‘);
    return 0;
}

  

POJ 1951

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4291068.html

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