菜鸟笔记
提升您的技术认知

c time(0)函数-ag真人游戏

time(0)函数返回当前格林尼治标准时间与格林尼治标准时间1970年0分0秒的时间间隔。

头文件  #include

//问题:得到当前时间。
#include 
#include 
using namespace std;
int main()
{
        int totalseconds = time(0);
        int currentseconds = totalseconds % 60;
        int totalminutes = totalseconds / 60;
        int currentminutes = totalminutes % 60;
        int totalhours  = totalminutes / 60;
        int currenthours = (totalhours   8 ) % 24; //因为格林尼治时间比中国北京时间晚8小时,
        cout << currenthours << ":" << currentminutes << ":" << currentsecond;
        return 0;
}

注意 “ 8”

网站地图