Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

TryToRed's blog

By TryToRed, history, 8 years ago, translation, In English

Hello, codeforces!

I am used Windows for a long time, and now I decided to install linux. I am already choose Ubuntu, because it simple for novice linux users. And now I ask linux users to advices me fast and simple c++ IDE's for linux, with g++ comiler.

Thanks a lot, and sorry for my poor english.

  • Vote: I like it
  • +4
  • Vote: I do not like it

| Write comment?
»
8 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Code::Blocks will serve the purpose.

»
8 years ago, # |
Rev. 3   Vote: I like it -15 Vote: I do not like it

Eclipse is the Best .
sample of it's codes : 19305153 .
Good luck .

  • »
    »
    8 years ago, # ^ |
      Vote: I like it -43 Vote: I do not like it

    Dude....

    You suck in competitive programming. Why do you care about the editor if you cannot solve Div2 B problems. Go solve some problems and stop commenting bullshit!

»
8 years ago, # |
  Vote: I like it +4 Vote: I do not like it

CLion is really great. If you're a student you can get a free license.

  • »
    »
    8 years ago, # ^ |
      Vote: I like it +3 Vote: I do not like it

    I am in high school now, can I get a license? Btw, thanks in advice, CLion is really awesome.

    • »
      »
      »
      8 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      You will need a university mail adress. But it probably also works if you have some other form of identification, like a photo of your student card.

»
8 years ago, # |
  Vote: I like it +6 Vote: I do not like it

Geany with custom build commands works great for me (C++). Simple + Fast

»
8 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Every coder here will have their different preferences. You should try a few editors and find your favorite. For example, I prefer to use vim but it takes a very long time to learn and some people don't like it, so I can't say for sure that it is the best. To find what is best for you, you have to try out different ones :) Some of my friends even are happy to use gedit or notepad++!

One thing I can say for sure though, I would recommend that you use g++ in the command line instead of an in-built compiler, it just gives you more options like gdb, changing compile flags on the fly, checking how long your program takes, etc.

  • »
    »
    8 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Wow, thanks for answer, but, compilation in command line(i.e. type command to compile) take more time than ide, right?

    • »
      »
      »
      8 years ago, # ^ |
        Vote: I like it +1 Vote: I do not like it

      It is not slower once you get used to it, plus you can use 'make'. The advantages far outweigh any problems though. For example you can directly pipe and paste into command line, instead of bothering with input/output files.

»
8 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Here you can find some thing good.