这里推荐一个万能头文件给大家
#include <bits/stdc++.h>
using namespace std;
不过要看考试的评测机支不支持,绝大部分都是支持的。当然,我们还可以留一手,准备一个完整的头文件,在考试开始前敲上去就行。
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <time.h>
#include <algorithm>
#include <iostream>
#include <queue>
#include <stack>
#include <vector>
#include <string>
using namespace std;
int main() {
return 0;
}
特别注意:头文件可以多,但是不能少,但是有一些头文件是不允许的,大部分OJ为了系统安全性考虑限制了一些特殊的API,导致一些头文件不能使用,比如windows.h。当然不同的OJ的安全策略也不尽相同,一般不涉及到系统函数的头文件一般都是可以使用的。
掌握头文件技巧
登录后开始许愿
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>