在Dev-C ++中工作时出现此错误:
#ifndef _CXX0X_WARNING_H
#define _CXX0X_WARNING_H 1
#if __cplusplus < 201103L
#error This file requires compiler and library support for the \
ISO C++ 2011 standard. This support is currently experimental, and must be \
enabled with the -std=c++11 or -std=gnu++11 compiler options.
#endif
#endif
我试图在随机库中使用rand()函数。如何解决此问题? 请具体-我是编程新手,还不太了解。我曾经在其他几个地方问过类似的问题,但是人们只是说“做错误说了什么”,当我不了解或如何解决时,这无济于事。我需要其他编译器吗?我怎么做?