无法使用Code :: Blocks在linux中编译C ++

时间:2015-08-23 21:40:40

标签: c++ linux codeblocks mint

#include <iostream>

using namespace std;

int main(){
    int intake;

    cout<<"Enter the maximum number of intake in this session of 2015, September: ";
    cin>>intake;

    for(int i=20150900; i<intake+20150900; i++){
        cout<<"Enter the total percentage of Student ID numbered #"<<i<<": ";
    }

    return 0;
}

这是我的代码,当我在code :: blocks上编译它时会出现以下错误。我是linux OS的新手,所以我不太了解它是如何工作的。谢谢你的帮助! :) 错误消息:

  

g ++ -c /home/subbs/Desktop/entrance_exam/main.cpp -o   /home/subbs/Desktop/entrance_exam/main.o / bin / sh:1:g ++:not found

1 个答案:

答案 0 :(得分:3)

打开终端并输入sudo apt-get install g++。这将负责安装g ++以及您需要的所有其他内容。这真的很容易。