1. 一百以内的所有素数:
const int prime[26] = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101};
2. 数学常量:
const int PI = 3.1415927;
const int E = 2.71828;
const int factor[] = {1,1,2,6,24,120,720,5040,40320}; //阶乘
3. 日期:
//每个月几天
int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
//星期
string WEEK[] = {
"MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"
_week["MON"] = 1, _week["TUE"] = 2, _week["WED"] = 3, _week["THU"] = 4, _week["FRI"] = 5,
_week["SAT"] = 6, _week["SUN"] = 7;
//月份
string MONTH[] = {
"JAN", "FEB", "MAR", "APR", "MAY", "JUE", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"
};
_month["JAN"] = 1, _month["FEB"] = 2, _month["MAR"] = 3, _month["APR"] = 4,
_month["MAY"] = 5, _month["JUE"] = 6, _month["JUL"] = 7, _month["AUG"] = 8,
_month["SEP"] = 9, _month["OCT"] = 10, _month["NOV"] = 11, _month["DEC"] = 12;
*暂时先写一部分, 随后慢慢添加