Блог пользователя TryToRed

Автор TryToRed, история, 8 лет назад, По-русски

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 useres. 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.

  • Проголосовать: нравится
  • +4
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Code::Blocks will serve the purpose.

»
8 лет назад, # |
Rev. 3   Проголосовать: нравится -15 Проголосовать: не нравится

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

  • »
    »
    8 лет назад, # ^ |
      Проголосовать: нравится -43 Проголосовать: не нравится

    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 лет назад, # |
  Проголосовать: нравится +4 Проголосовать: не нравится

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

  • »
    »
    8 лет назад, # ^ |
      Проголосовать: нравится +3 Проголосовать: не нравится

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

    • »
      »
      »
      8 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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 лет назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

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

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

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 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

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

    • »
      »
      »
      8 лет назад, # ^ |
        Проголосовать: нравится +1 Проголосовать: не нравится

      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 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Here you can find some thing good.