问题标题: 我的看时间代码哪里需要改???

0
0
已解决
包涵宇
包涵宇
中级天翼
中级天翼

看时间代码:

#include <string>
#include <time.h>
#include<windows.h>
#include<bits/stdc++.h>
using namespace std;
string getTime()
{
    time_t timep;
    time (&timep);
    char tmp[64];
    strftime(tmp, sizeof(tmp), "%Y-%m-%d %H:%M:%S",localtime(&timep) );
    return tmp;
}
int main(){
    while(1){
        system("cls");
        string time = getTime();
        cout<<time ;
        Sleep(999);
    } 
    return 0;
}

 


0
已采纳
赵逸凡
赵逸凡
初级启示者
初级启示者

万能头已经包含了time.h和string头文件,所以不需要写前2行了,Sleep(999)是停息9秒99毫秒,我还不知道你这个程序的作用,从函数来看写的是对的

0
我要回答