#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#include <time.h>
int main(int argn,char* argv[])// int a[1]//a[0]
{
struct mytime
{
int 时;//时
int min; //分
};
time_t t;// long int
struct tm * timfo;
struct mytime stu[2];
time(&t);
timfo= localtime(&t);
printf("%d年%d月%d日%d时%d分%d秒\n",timfo->tm_year+1900,timfo->tm_mon, \
timfo->tm_mday+1,timfo->tm_hour,timfo->tm_min,timfo->tm_sec);
stu[0].时=8;
stu[0].min=30;
stu[1].时=8;
stu[1].min=25;
getchar();
getchar();
return 0;
}
C语言时间函数及结构化数据
最新推荐文章于 2022-10-21 21:25:39 发布