我使用了 6 个函数。其中三个(读取)用于扫描,另一个用于打印(写入)。我检查了读取功能是否正常工作,问题主要出在其中一个写入功能上。问题是我从用户那里扫描整数,并将它们存储在一个结构数组中,但是在打印它们时,我只得到最后输入的整数。
#include<stdio.h>
#include<string.h>
typedef struct
{
char month[20];
int day;
int year;
} date_t;
typedef struct{
int hours;
int minutes;
int seconds;
}time_t;
typedef struct
{
char event[20];
time_t tm;
date_t dt;
}event_t;
int wr_event(const event_t*);
int wr_date(const event_t*);
int wr_time(const event_t*);
int rd_event(event_t*);
int rd_date(event_t*);
int rd_time(event_t*);
int main()
{
int i,j=0,temp=1;
event_t ev[5];
while(temp!=0&&j!=5)
{
rd_event(&ev[j]);
temp=strcmp(ev[j].event,"exit");
j++;
}
if(temp==0)j=j-1;
for(i=0;i<j;i++){
wr_event(&ev[i]);
}
}
int rd_time(event_t *ev)
{
printf("hours->");
scanf("%d",&ev->tm.hours);
printf("minutes->");
scanf("%d",&ev->tm.minutes);
printf("secondes->");
scanf("%d",&ev->tm.seconds);
}
int rd_date(event_t *ev)
{
printf("day-> ");
scanf("%d",&ev->dt.day);
fflush(stdin);
printf("month->");
gets(ev->dt.month);
printf("year->");
scanf("%d",&ev->dt.year);
}
int rd_event(event_t *ev)
{
printf("\nevent name->");
fflush(stdin);
gets(ev->event);
if(strcmp(ev->event,"exit")!=0){
rd_time(&ev);
rd_date(&ev);
}
}
int wr_time(const event_t *ev)
{
printf("this is the time of the event->%d %d %d\n\n",ev->tm.hours,ev->tm.minutes,ev->tm.seconds);
}
int wr_date(const event_t *ev)
{
printf("this the date of the event-> %d %s %d\n\n",ev->dt.day,ev->dt.month,ev->dt.year);
}
int wr_event(const event_t *ev)
{
printf("\nthis is your event-> %s\n\n",ev->event);
wr_time(&ev);
wr_date(&ev);
}