获取时间
程序员文章站
2024-01-21 21:01:04
...
/*
time_t t;
t = time(0); /// = time(&t);
char tmp[1111];
strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",localtime(&t) );
puts( tmp );
for (int i = 0; i < 10000; i++) cout << 1 << " ";
printf("Time cost : %f s\n",(double)clock()/CLOCKS_PER_SEC);
time_t be,en;
double ret;
be=clock();
for(int i=0;i<100;i++)
cout<<"you are a good child!"<<endl;
//这里加上你的代码
en=clock();
ret=double(en-be)/CLOCKS_PER_SEC;
cout<<"runtime: "<<ret<<endl;
*/
for (int i = 0; i < 100000; i++)
{
cout << "s";
}
cout << "Totle Time : " << (double)clock() /CLOCKS_PER_SEC<< "s" << endl;
printf("Time cost : %f s\n",(double)clock()/CLOCKS_PER_SEC);
system("pause");
%a 星期几的缩写。Eg:Tue
%A 星期几的全名。 Eg: Tuesday
%b 月份名称的缩写。
%B 月份名称的全名。
%c 本地端日期时间较佳表示字符串。
%d 用数字表示本月的第几天 (范围为 00 至 31)。日期
%H 用 24 小时制数字表示小时数 (范围为 00 至 23)。
%I 用 12 小时制数字表示小时数 (范围为 01 至 12)。
%j 以数字表示当年度的第几天 (范围为 001 至 366)。
%m 月份的数字 (范围由 1 至 12)。
%M 分钟。
%p 以 ‘‘AM’’ 或 ‘‘PM’’ 表示本地端时间。
%S 秒数。
%U 数字表示为本年度的第几周,第一个星期由第一个周日开始。
%W 数字表示为本年度的第几周,第一个星期由第一个周一开始。
%w 用数字表示本周的第几天 ( 0 为周日)。
%x 不含时间的日期表示法。
%X 不含日期的时间表示法。 Eg: 15:26:30
%y 二位数字表示年份 (范围由 00 至 99)。
%Y 完整的年份数字表示,即四位数。 Eg:2008
%Z(%z) 时区或名称缩写。Eg:中国标准时间
%% % 字符
获取时间类
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
class CDate{
int d,m,y;
const string df_s;
const string df_l;
public:
CDate(int dd,int mm=1,int yy=1999);
CDate();
string format(string df);
};
#include "CDate.h"
CDate::CDate(int dd, int mm, int yy):df_s("ddd"),df_l("DDD"){}
CDate::CDate():df_s("ddd"),df_l("DDD"){
time_t now;
time(&now);
struct tm *t_now;
t_now = localtime(&now);
y = t_now -> tm_year + 1900;
m = t_now -> tm_mon + 1;
d = t_now -> tm_mday;
}
string CDate::format(string df){
char c_df[20];
if(df == df_s)
{
sprintf(c_df, "%d-%d-%d", y, m, d);
return string(c_df);
}
if(df == df_l)
{
sprintf(c_df, "%dÄê%dÔÂ%dÈÕ", y, m, d);
return string(c_df);
}
return string("");
}