如何解决“错误:'value_too_large'不是'std :: errc'的成员?

时间:2019-07-23 17:13:19

标签: c++ build clion mingw-w64

我开始使用JetBrains的CLion进行编码,基本上用它来编译和运行问题(来自codeforces,codechef等) 当我尝试使用“ bits / stdc ++。h”头文件时,此错误不断弹出,并且构建失败。但是当我使用“ iostream”时,该程序便已构建并运行。

显示的错误链接:

Screenshot of the IDE with the error

代码

#include<bits/stdc++.h>
using namespace std;

int main (int argc , char **argv){
    int x;
    cin>>x;
    cout<<endl<<x;
}



//This One works perfectly.

#include<iostream>
using namespace std;

int main (int argc , char **argv){
    int x;
    cin>>x;
    cout<<endl<<x;
}

显示错误,当我使用bits / stdc ++。h头文件而不是iostream头文件时,谁能向我解释此错误的原因或如何消除此错误?

0 个答案:

没有答案