运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,明暗模式
前往 Spaces
#include <iostream> #include <ctime> // Import the ctime library using namespace std; int main () { // Create the datetime structure and use mktime to correct mistakes struct tm datetime; datetime.tm_year = 2022 - 1900; // Number of years since 1900 datetime.tm_mon = 0; // 0 is January datetime.tm_mday = 32; datetime.tm_hour = 0; datetime.tm_min = 0; datetime.tm_sec = 0; datetime.tm_isdst = -1; mktime(&datetime); cout << asctime(&datetime); return 0; }
2022 年 2 月 1 日星期二 00:00:00