Y
Y
YraganTron2015-11-05 18:17:59
Eclipse
YraganTron, 2015-11-05 18:17:59

How to deal with setting the programming style on Eclipse?

Good day. Unable to set up Eclipse. There is such a code.

#include <iostream>
#include <map>
#include <string>
#include <vector>

bool sortbycount(const pair <string, int> &a, const pair <string, int> &b) {
    if (a.second > b.second)
        return true;
    if (a.second < b.second)
        return false;
    if (a.first < b.first)
        return true;
    return false;
}

int main() {
    string w;
    map <string, int> d;
    while (cin >> w)
        d[w]++;
for (pair <string,int> p : d) {
    vector<pair <string,int> > res(d.size());
    copy <d.begin(), d.end(), res.begin()>;
    sort(res.begin(), res.end(), sortbycount);
    for(auto r : res)
    cout << r.first << " " << r.second << end;
}
}

As you can see, for breaks everything. I don't understand why and how to fix it

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Evhen, 2015-11-06
@EugeneP2

Не совсем уверен насчет версии эклипс с++, но в случае версии для джавы, в настройках -> Java -> Code Style -> Formatter
Создаете новый профайл и настраиваете форматирование как вам угодна, где какие переносы, где какие пробелы, табуляции. Там есть примеры того, как будет выглядеть код с теми или иными настройками.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question