zhong147 发表于 2019-4-3 21:34:25

小程序

我现在要做个可以在输入一串数字后记录时间的软件。要在输入这一串数字后可以查询这个数是什么时候录入的

xceeet6 发表于 2019-4-4 09:20:03

#include <stdio.h>
#include <time.h>

int main(void){

        time_t t;
        char buf;
        time(&t);
        ctime_r(&t,buf);  
        printf("%s",buf);
        return 0;
}
time()函数获得当前时间距离格林尼治标准时间1970:1:1 00:00:00的秒数
ctime_r()函数是将time()获得的时间转化为当前常用格式,并将值存放在buf中
你直接printf你输入的数
eg:
int a;
printf("你输入的数:");//a的值
scanf("%d",&a);
time_t t;
char buf;
time(&t);
ctime_r(&t,buf);
printf("%d %s",a,buf);

xceeet6 发表于 2019-4-4 09:21:01

xceeet6 发表于 2019-4-4 09:20
#include
#include



前面的&#160;你别管了。。。是缩进

zhong147 发表于 2019-4-4 20:44:42

xceeet6 发表于 2019-4-4 09:20
#include
#include



你好,我是程序小白。你给我这个我也不会搞。能麻烦你指导我下吗

zhong147 发表于 2019-4-4 20:48:38

最好是帮我搞成可以直接打开的程序。可以加我微信传给我。也好让我请你抽烟

zhong147 发表于 2019-4-4 21:44:14

zhong147 发表于 2019-4-4 20:48
最好是帮我搞成可以直接打开的程序。可以加我微信传给我。也好让我请你抽烟

我咋看到有消息,但我没找到内容啊。加我微信好不1 3 0 3 6 4 8 7 9 9 2
页: [1]
查看完整版本: 小程序