哪位童鞋有比较玄学的头文件呢
举例:
#include <bits/stdc++.h>
using namespace std;
inline void Load(void) {
ios::sync_with_stdio(false);
std::cin.tie(0);
#ifndef ONLINE_JUDGE
set_file_IO("FILE_NAME");
freopen((name + ".in" ).c_str(), "r", stdin );
freopen((name + ".out").c_str(), "w", stdout);
#endif
}
int main(void) {
Load();
return 0;
}