我姑姑给了我一本关于c ++的书(适合初学者)。这很好,所以我想测试其中一个代码示例。但我只是得到错误。我没有找到任何可以帮助我在谷歌左右的东西。 我正在使用Eclipse Mars.1 C ++和MinGW。
代码:
/*
* Erstes_Programm.cpp
*
* Created on: 26.12.2015
* Author: Luca
*/
// Erstes Programm
#include <iostream>
using namespace std;
int main() {
cout << "It's just a test!" << endl;
return 0;
}
我收到了这些错误:
使用命名空间:
Description Resource Path Location Type
expected ';' before ':' token
Erstes_Programm.cpp /Programmieren C++ (Einführung)
line 10
C/C++ Problem
和
Description Resource Path Location Type
expected unqualified-id before ':' token
Erstes_Programm.cpp /Programmieren C++ (Einführung)
line 10
C/C++ Problem
希望有人可以帮助我?
以下是截图:
编辑:解决问题!!我不知道我做了什么,但它解决了我没有得到任何错误,一切都很完美。感谢所有想要帮助的人
答案 0 :(得分:0)
屏幕截图中的第一行没有任何意义。去掉它。其余看起来很好。并且在将来发布文字,而不是截图。
答案 1 :(得分:0)
而是使用X代码而不是eclipse for C ++。 Visual Studio是最值得推荐的。 对于你的问题,我认为你必须使用库,必须不支持某些东西,除此之外你的代码看起来很好。