c代码记录之结构体成绩统计 摘要:第一次练习结构体,略显生涩 #include struct student{ char xuehao[10],name[10]; int a,b…… 题解列表 2023年12月29日 0 点赞 0 评论 138 浏览 评分:0.0
没有比我更直观的了吧 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct stu{ char num[100]; char name[100];…… 题解列表 2024年01月15日 0 点赞 0 评论 101 浏览 评分:0.0
结构体成绩统计二(C语言)好理解 摘要:参考代码:#include<stdio.h>typedef struct stu { char num[100]; char name[100]; int score[3];};vo…… 题解列表 2024年01月24日 0 点赞 0 评论 101 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:和上一个题解题思路一样,唯一不同的就是需要求出各科平均成绩和输出最高分的信息可设定一个变量来记录当前最高分,并循环遍历结构体数组,拿到最高分的值于下标,输出最高分即可注意事项:参考代码:#i…… 题解列表 2024年01月27日 0 点赞 0 评论 127 浏览 评分: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 评论 92 浏览 评分:0.0
结构体之成绩统计2(C语言)---谢谢查看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct student{ char xuehao[5]; char name[20]; int…… 题解列表 2024年03月17日 0 点赞 0 评论 146 浏览 评分:0.0
主体C语言的简单链表 摘要:解题思路:封装函数 调用注意事项:参考代码://// Created by Freedom on 2024/3/19.//#include <iostream>#include <cstdio>usi…… 题解列表 2024年03月19日 0 点赞 0 评论 136 浏览 评分:0.0
结构体输出成绩统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{ char num[50]; char name[50]; …… 题解列表 2024年03月27日 0 点赞 0 评论 167 浏览 评分:0.0
题目 1051: [编程入门]结构体之成绩统计2 摘要:#include <stdio.h> // 定义学生结构体 typedef struct { char id[20]; char name[20]; int …… 题解列表 2024年03月30日 0 点赞 0 评论 131 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu{ char num[20]; char name[20]; i…… 题解列表 2024年04月05日 0 点赞 0 评论 146 浏览 评分:0.0