[求助]文件数据输入,处理及输出
数据文件(scores.dat)第0行 学号 姓名 数学 物理 计算机
1 *** *** *** *** ***
.
.
.
20
-------------------------------------
structure student //利用结构体输入数据
{
char no[10];//学号
char name[7];//姓名
float mat;//数学
float phy;//物理
float com;//计算机
}
structure student stu[20];//共20个人,20条数据
怎么把数据输入到结构体数组中啊?
谢谢了啊
[此贴子已经被作者于2006-6-22 15:28:13编辑过]