关于C++万能头文件问题

#include<bits/stdc++.h>

  等于

#include <iostream> 
#include <cstdio> 
#include <fstream> 
#include <algorithm> 
#include <cmath> 
#include <deque> 
#include <vector> 
#include <queue> 
#include <string> 
#include <cstring> 
#include <map> 
#include <stack> 
#include <set> 
using namespace std;
 
1int main(){
   
    return 0;
}

不是很懂,刚刚自学。

猜你喜欢

转载自blog.csdn.net/Davidmvp/article/details/82693596
今日推荐