#include <stdio.h>
#include <string.h>
#define N 8
typedef
struct
{
char
num[10];
int
year,month,day;
}STU;
①______ fun(STU *std,
char
*num)
{
int
i;
STU a={
""
,9999,99,99};
for
(i=0; i<N; i++)
if
(
strcmp
(②______,num)==0)
return
(③______);
return
a;
}
void
main()
{
STU std[N]={{
"111111"
,1984,2,15}, {
"222222"
,1983,9,21},
{
"333333"
,1984,9,1}, {
"444444"
,1983,7,15}, {
"555555"
,1984,9,28},
{
"666666"
,1983,11,15}, {
"777777"
,1983,6,22}, {
"888888"
,1984,8,19}};
STU p;
char
n[10]=
"666666"
;
p=fun(std,n);
if
(p.num[0]==0)
printf
(
"\nNot found !\n"
);
else
{
printf
(
"\nSucceed !\n "
);
printf
(
"%s %d-%d-%d\n"
, p.num, p.year, p.month, p.day);
}
}