-2

我正在尝试获取时间戳以显示系统提供的日期和时间。'time、'asctime' 和 'localtime' 出现错误 - 找不到标识符。我认为这应该是一个简单的解决方法,但我是一个新手程序员并且无法解决问题。谢谢!

#include <iostream>
using namespace std;


    int main()
    {
        cout << "Content-type: text/html\n\n";
        cout << "<center><h1>TEST</h1>\n";


        return 0;

        time_t tTime = time(NULL);
    printf("Today is : %s\n", asctime(localtime(&tTime)));
    }
4

1 回答 1

2

你忘了添加#include <time.h>吗?

于 2013-04-07T01:21:38.990 回答