好友
阅读权限10
听众
最后登录1970-1-1
|
lcx4
发表于 2015-5-4 14:23
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#include <time.h>
int main(void)
{
struct mytime
{
//char name[256];
int hour;//时
int min; //分
int sec; //秒
};
struct stu_data
{
char name[256];//学生名字
struct mytime stuTime;//签到时间
};
struct stu_data stu[50];
time_t t;// long int
struct tm * timfo;
int i;
for (i = 0; i < 3; i++)
{
scanf("%s", &stu[i].name);
time(&t);
timfo = localtime(&t); //取当前系统时间
stu[i].stuTime.hour = timfo->tm_hour;//时
stu[i].stuTime.min = timfo->tm_min;//分
stu[i].stuTime.sec = timfo->tm_sec;//秒
printf("%s,到校时间:%d时%d分%d秒\n", stu[i].name, stu[i].stuTime.hour, stu[i].stuTime.min, stu[i].stuTime.sec);
}
system("pause");
return 0;
}
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|