C++万能头文件真好用

⑧说了,bits/stdc++.h就是好用

#include<cstdio>
#include<unistd.h>//includes sleep(Second) unsigned long
#include<windows.h>//includes Sleep(MilliSecond) unsigned long
#include<stdlib.h>//includes rand()
void Notes(){
	while(1)
	{
		srand(1468563883); 
		printf("Why not use #include<bits/stdc++.h> to deal with those stupid C++ headfiles?\n\n");
		Sleep(rand());
	}
//以
//前
//写
//头
//文
//件
//啊
//,
//一
//次
//十
//行
//地
//写
//,
//不
//仅
//记
//忆
//麻
//烦
//,
//而
//且
//容
//易
//出
//错
/*
#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> 头
文
件
 
 b
 i
 t
 s
 /
 s
 t
 d
 c
 +
 +
 .
 h
  
  ,
  一
  个
  更
  比
  1
  3
  个
  强
  !
*/
}
#include<bits/stdc++.h>
using namespace std;
int main(){
	Notes();
	return 0;
}


发布了4 篇原创文章 · 获赞 0 · 访问量 100

猜你喜欢

转载自blog.csdn.net/qq_21364761/article/details/103217161