c语言中获取系统时间的方法
程序员文章站
2024-01-28 10:39:04
...
这是在设计图书管理系统当中调用的获取系统时间,简单方便
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d,e,f;
int argc;char ** argv;
time_t temp;
struct tm *t;
time(&temp);
t = localtime(&temp);
a=t->tm_year+1900;
b=t->tm_mon+1;
c=t->tm_mday;
d=t->tm_hour;
e=t->tm_min;
f=t->tm_sec;
cout<<"当前时间:"<<a<<"年"<<b<<"月"<<c<<"日"<<d<<"时"<<e<<"分"<<f<<"秒";
}
可以自己尝试一下上一篇: yii主域名透过a连接到二级域名,二级域名就登录不成功
下一篇: 防抖异步模板