编写题解 1051: [编程入门]结构体之成绩统计2 (C++ 代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct student { char no[50]; …… 题解列表 2021年09月10日 0 点赞 0 评论 100 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言) 摘要:```c #include int ave1=0,ave2=0,ave3=0; struct a{ char b[20]; char c[20]; int d; int e; …… 题解列表 2021年09月10日 0 点赞 0 评论 133 浏览 评分:0.0
利用列表来解决求平均值问题(python) 摘要:解题思路:注意事项:参考代码:n=int(input())s=a=b=c=0for i in range(n): list=input().split() …… 题解列表 2021年08月18日 0 点赞 0 评论 353 浏览 评分:9.9
[编程入门]结构体之成绩统计2 容易理解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Grade{ char no[10]; char name[10]; int subject[10];};void cal…… 题解列表 2021年08月18日 0 点赞 0 评论 317 浏览 评分:9.9
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:结构体数组定义与使用注意事项:参考代码:struct inf{ char no[100]; char name[100]; int sc1; int …… 题解列表 2021年08月02日 0 点赞 0 评论 178 浏览 评分:0.0
[编程入门]结构体之成绩统计2(C语言) 摘要:#include<stdio.h> struct stu{ char num[100]; char name[100]; int score[3]; }; void input(s…… 题解列表 2021年07月21日 0 点赞 0 评论 333 浏览 评分:9.9
用最普通的c语言做出结构体之成绩统计2 摘要:解题思路:1.没写output,感觉要调用好多形参,还不如直接在功能出输出。 2.最后花很长时间写出来,回过头看感觉没有想象的那么复杂,哈哈。 3.…… 题解列表 2021年04月21日 0 点赞 0 评论 329 浏览 评分:9.9
链表实现结构体之成绩统计2 摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct student { char id[10]; char n…… 题解列表 2021年04月11日 0 点赞 0 评论 172 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:count = int(input())lst = [] #存放每个人的分数平均值str = [] #存放输入学生信息sum1=0sum2=0sum3=0for …… 题解列表 2021年04月10日 0 点赞 1 评论 370 浏览 评分:9.9
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; …… 题解列表 2021年03月29日 0 点赞 0 评论 557 浏览 评分:9.9