C语言改错
C语言改错
日期:2022-04-06 02:12:38 人气:1
首先 你要用定义结构体数组 那么就应该写全struct stu student[5]
要不然就用tpyedef struct stu{...}stu; 给结构体起个别称
第二
s+=*student.score[i]; 有两个错误
*号去掉 你是个float型 加个*号干什么
其次 应该是student[i].score; 你是数组student 不是数
要不然就用tpyedef struct stu{...}stu; 给结构体起个别称
第二
s+=*student.score[i]; 有两个错误
*号去掉 你是个float型 加个*号干什么
其次 应该是student[i].score; 你是数组student 不是数