码迷,mamicode.com
首页 > 其他好文 > 详细

头文件

时间:2015-11-07 16:01:16      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <stack>
#include <queue>
#include <cctype>
#include <cstdio>
#include <string>
#include <vector>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#define LL long long
typedef long long type;
#define PI 3.1415926535897932626
using namespace std;
//type gcd(type a, type b) {return b == 0 ? a : gcd(b, a % b);}
int gcd(int a, int b) {return a % b == 0 ? b : gcd(b, a % b);}

 

头文件

标签:

原文地址:http://www.cnblogs.com/Commence/p/4944997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!