题解 1051: [编程入门]结构体之成绩统计2

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

结构体之成绩统计2

```cpp#includeusingnamespacestd;//结构体数组//定义结构体structstudent{charid[50];//学号charname[30];//姓名intscore[3];//三科成绩};studentstu[300];//输入学生的数据voidinput(intn

结构体之成绩统计2

摘要:解题思路:注意事项:注意判断俩个同学成绩一样的情况参考代码:a=int(input())b=[]sum=0sun=0suk=0n=0w=[]k=0t=[]for i in range(a):    c……

结构体之成绩统计2

```c#includestructScore{intsub1;intsub2;intsub3;};structName{charid[100];charname[100];structScorescore;};voidgetInformation(structName*p);voidputInfor

python求结构体之成绩统计,好理解

解题思路:先把每个学生的信息装在一个列表里,外层再套一个列表装全部同学的个人信息,再把每科分数单独提出来注意事项:参考代码:n=int(input())list=[]list2=[]list3=[]list4=[]foriinrange(n):l=input().split()list.append(