close

題目:

https://vjudge.net/problem/UVA-10815

C++:

#include <iostream>
#include <sstream>
#include <set>
using namespace std;
 
int main() {
    string s, t;
    set <string> st;
    while (cin >> s) {
        for (int i = 0; i < s.size(); i++) {
            if (isalpha(s[i])) s[i] = tolower(s[i]);
            else s[i] = ' ';
        }
        stringstream ss(s);
        while (ss >> s) {
            st.insert(s);
        }
    }
    set <string>::iterator it;
    for (it = st.begin();it!=st.end();it++) {
        cout << *it << "\n";
    }
    return 0;
}
arrow
arrow
    文章標籤
    UVA C++
    全站熱搜
    創作者介紹
    創作者 趴趴熊日常 的頭像
    趴趴熊日常

    資工趴趴熊的小天地

    趴趴熊日常 發表在 痞客邦 留言(0) 人氣()