根据编译器参数和查询compilerPath,IntelliSenseMode已从“windows-gcc-x64”变更为“windows-gcc-x86”:“C:\MinGW\bin\gcc.exe”[重复]

sqougxex  于 2022-11-13  发布在  Windows
关注(0)|答案(1)|浏览(411)

此问题在此处已有答案

Why should I not #include <bits/stdc++.h>?(9个答案)
三个月前关门了。
我使用visual studio进行c项目有六个多月的时间,但是时间过去了,下学期我有java课程,所以我安装了java包,用visual code studio像charm一样工作。
但是我现在对c
有问题,就像它一直告诉我的那样

#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit (C:\Users\DELL\Desktop\problem 1\a.c).

cannot open source file "bits/stdc++.h"

它也一直在传递信息

For C source files, IntelliSenseMode was changed from "windows-gcc-x64" to "windows-gcc-x86" based on compiler args and querying compilerPath: "C:\MinGW\bin\gcc.exe"

我找不到我做错的地方

#include <bits/stdc++.h>
using namespace std;
#define fast   ios_base::sync_with_stdio(false); cin.tie(NULL);
int main()
{
fast
int num,n;
cin>>n;
vector<vector<int>> v;

for(int i=0;i<n;i++)
{
    vector<int> v1;
   for(int j=0;j<n;j++)
    {
        v1.push_back(j+1);
    }
    v.push_back(v1);
}

return 0;
}

不包括#include <bits/stdc++.h>时会产生各种类型的错误,但它编译正确,也会给出结果,但我不知道为什么它会显示错误。

euoag5mw

euoag5mw1#

您的编译器安装不正确。如果您重新安装编译器来解决这个错误,将会很有帮助。

相关问题