struct student { int num; char name[20]; char sex; int age; float score[3]; int class; }; struct student stu[3];我定义了这个结构体数组后不知道怎样用健盘初始化,要分别把三个人的数据输进去。