pr28002.cpp

来自「c++编程宝典源码及Quincy99编译器 是《标准C++编程宝典》电子工业出」· C++ 代码 · 共 36 行

CPP
36
字号
////////////////////////////////////////
// File Name: pr28002.cpp
////////////////////////////////////////
#include <iostream>
#include <locale>
#include <clocale>
#include <ctime>

int main()
{
    char dateStr[81];
    time_t curTime;
    struct tm* tmTime;

    // Get the current time.
    time(&curTime);

    // Convert the time to a tm structure.
    tmTime = gmtime(&curTime);

    // Convert the time to a string.
    strftime(dateStr, 80, "%#x", tmTime);

    // Make the global locale French with USA dates.
    std::locale french(std::locale("french"),
        std::locale("american"), LC_TIME);
    std::locale::global(french);

    // Redisplay the date using the mixed locale.
    strftime(dateStr, 80, "%#x", tmTime);
    std::cout << "French Date: " << std::endl;
    std::cout << dateStr << std::endl << std::endl;

    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?