C语言问题[Error] invalid operands to binary + (have 'float' and 'struct Student')

C语言编译之后出现[Error] invalid operands to binary + (have 'float' and 'struct Student'),如何处理

你将一个float型变量和一个struct Student结构体类型变量进行相加了,类型不一致无法相加,所以报错了。应该是学生的成绩相加吧