有以下程序
#include
struct date
{
int year,month, day;
};
struct time
{
int hour,minute, second;
};
struct stu
{
struct date dt;
struct time tt;
};
void main()
{
struct stu recd[3] = {{{2016, 3, 5},{12, 25, 30}},
{{2017, 5, 8}, {8, 45, 55}},
{{2015, 6, 8}, {22, 15, 26}}};
int i;
for(i=1;i<3;i++)
{
if(recd[i].dt.year>=2016)
printf("%d-%d",recd[i].dt.month,recd[i].dt.day);
else
printf("%d-%d",recd[i].tt.minute,recd[i].tt.second);
printf ("\n");
}
}
程序执行后的输出结果是______。