新手求助,数组结构
一个文本文件存放着如下信息(19行数据):4 Jessie Joybat 5 5 3 3
18 Mngssie Moybat 5 2 2 1
10 Jghsie Jybat 5 5 1 2
14 Aebvie Aoybat 7 2 8 1
13 Nessie Noybat 9 3 1
。。。
如何把此文件数据放在如下结构数组中
struct information{
int number;
char fname[SIZE];
char lname[SIZE];
int play_count;
int hit_count;
int go_count;
int rbi;;
};
struct information num[19];