#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操作系统新手,所以我不太了解它是如何工作的。谢谢你的帮助!:)
错误消息:
G++-C/home/subbs/desktop/entrance_exam/main.cpp-o
/home/subbs/desktop/entrance懔exam/main.o/bin/sh:1:g++:未找到

最佳答案

打开终端并输入sudo apt-get install g++。这将负责安装g++和您需要的一切。这真的很容易。

09-07 03:26