随机:没有这样的文件或目录

时间:2016-10-13 15:45:43

标签: c++ compiler-errors dev-c++

我正在尝试运行一些模拟,但是当我尝试编译我的代码时,我收到错误消息

  

随机:没有这样的文件或目录

我的代码的开头看起来像

#include<iostream>
#include<iomanip>
#include<cmath>
#include<stdlib.h>
#include<random>
#include<set>
#include<algorithm>
#include<fstream>
#include<vector>

using namespace std;

我正在使用Dev-C ++ 5.0 beta 9.2。我应该注意,这段代码在家用电脑上编译得很好。

编辑:

没有选项可以在我的编译器选项下更改“语言标准”: enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

您必须设置-std=c++11标志才能使用此 C ++ 11功能!随机需要​​使用C ++ 11。