[编程入门]结构体之成绩统计 屎山代码 只会语法 摘要:解题思路:注意事项:参考代码:class Student: def input(self, student_id, name, score): self.student_i…… 题解列表 2023年12月01日 0 点赞 0 评论 328 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct student{ char xuehao[10000]; …… 题解列表 2023年12月09日 0 点赞 0 评论 1693 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include<stdio.h>int main…… 题解列表 2023年12月13日 0 点赞 0 评论 522 浏览 评分:0.0
小矛盾的结构体统计之成绩统计2 C语言 摘要:解题思路: 只关注了大概要掌握的 输入与输出的例子告诉 输入是整型,输出也是 输入 第一行次数 &nbs 题解列表 2023年12月22日 0 点赞 0 评论 311 浏览 评分:0.0
c代码记录之结构体成绩统计 摘要:第一次练习结构体,略显生涩 #include struct student{ char xuehao[10],name[10]; int a,b…… 题解列表 2023年12月29日 0 点赞 0 评论 350 浏览 评分:0.0
没有比我更直观的了吧 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct stu{ char num[100]; char name[100];…… 题解列表 2024年01月15日 0 点赞 0 评论 325 浏览 评分:0.0
结构体成绩统计二(C语言)好理解 摘要:参考代码:#include<stdio.h>typedef struct stu { char num[100]; char name[100]; int score[3];};vo…… 题解列表 2024年01月24日 0 点赞 0 评论 309 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:和上一个题解题思路一样,唯一不同的就是需要求出各科平均成绩和输出最高分的信息可设定一个变量来记录当前最高分,并循环遍历结构体数组,拿到最高分的值于下标,输出最高分即可注意事项:参考代码:#i…… 题解列表 2024年01月27日 0 点赞 0 评论 386 浏览 评分:0.0
[编程入门]结构体之成绩统计2C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char s1[20]; char s2[20]; int a,b,c;};int m…… 题解列表 2024年02月27日 0 点赞 0 评论 299 浏览 评分:0.0
结构体之成绩统计2(C语言)---谢谢查看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct student{ char xuehao[5]; char name[20]; int…… 题解列表 2024年03月17日 0 点赞 0 评论 339 浏览 评分:0.0