(无解释版)结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ typedef struct student { char x[100]; …… 题解列表 2022年11月28日 0 点赞 1 评论 85 浏览 评分:9.9
[编程入门]结构体之成绩统计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
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:思路:通过结构体数组完成,用两个函数输入并输出 注意事项: ```c #include #include int compare(const void * m,const void …… 题解列表 2021年01月18日 0 点赞 0 评论 838 浏览 评分:9.9
[编程入门]结构体之成绩统计2-题解(C语言代码)很容易理解,没有太高级的语法,只有思路。 摘要:解题思路: 编了很久,新手上路。注意事项: 简单明了!!有问题留言谢谢。参考代码:#include <stdio.h>struct information{ char number[…… 题解列表 2020年07月12日 0 点赞 0 评论 789 浏览 评分:9.9
结构体之成绩统计2(C++)详细注解易于理解 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<string>using namespace std;struct student…… 题解列表 2021年11月27日 0 点赞 0 评论 412 浏览 评分:9.9
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:count = int(input())lst = [] #存放每个人的分数平均值str = [] #存放输入学生信息sum1=0sum2=0sum3=0for …… 题解列表 2021年04月10日 0 点赞 1 评论 370 浏览 评分:9.9
题解 1051: python字典做法 摘要:解题思路: 1.数据输入: 通过input()函数获取输入的整数N,表示学生人数。使用for循环迭代N次,每次输入一个学生的信息,包括学号(num)、姓名(name)、语文成绩(score…… 题解列表 2024年02月01日 0 点赞 0 评论 162 浏览 评分: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
利用python循环和数列解决 摘要:注意事项:菜鸡解法,分别看需要满足的条件依次进行解题写代码来满足他参考代码:a = int(input())b = []f = []c = 0d = 0e = 0for i in range(a): …… 题解列表 2024年10月18日 0 点赞 0 评论 96 浏览 评分:9.9
结构体之成绩统计2(用结构体指针,疯狂嵌套循环,缩小了工作量) 摘要:解题思路: 这题写的好爽,具体解释写代码中了 成绩我是以数组形式收取,免得写那么多 参考代码: ```c #include struct m { char sno[20…… 题解列表 2023年09月15日 0 点赞 0 评论 129 浏览 评分:9.9