C++笔试/竞赛常用技巧

1.万能头文件

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

与以下方式等价

#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;

int 和 string 的互转

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_44229976/article/details/126822884