CodeBlocks奇怪的编译错误 - c ++

时间:2014-10-17 18:09:58

标签: c++ codeblocks

这是我第一次使用代码块,但它没有变好,我面临一个非常奇怪的问题 我甚至无法描述它所以我只会告诉你发生了什么。 问题是即使代码是正确的,ide也不会编译我的项目 它只是打开一个名为“iostream”的新选项卡,控制台窗口显示为空 为什么会这样?

查看ide在编译时遇到问题的代码,最简单的代码

#include <iostream>

using namespace std;

int main()
{
cout << "Hello world!" << endl;
return 0;
}

这是编译结果......

enter image description here

那就是所有..

代码块会不会让我烦恼?

1 个答案:

答案 0 :(得分:3)

此行无效语法

usingnamespace std;

这是两个单独的关键字

using namespace std;

由于你刚刚开始使用C ++,Lesson 1: Don't do that.