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”