我开始使用JetBrains的CLion进行编码,基本上用它来编译和运行问题(来自codeforces,codechef等) 当我尝试使用“ bits / stdc ++。h”头文件时,此错误不断弹出,并且构建失败。但是当我使用“ iostream”时,该程序便已构建并运行。
显示的错误链接:
代码
#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头文件时,谁能向我解释此错误的原因或如何消除此错误?