欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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<<"秒";
}
可以自己尝试一下