编写题解 1051: [编程入门]结构体之成绩统计2(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { …… 题解列表 2024年12月27日 3 点赞 0 评论 440 浏览 评分:10.0
纯新手无脑解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main() { int n; scanf("%d", &n); ch…… 题解列表 2024年12月12日 0 点赞 0 评论 510 浏览 评分:0.0
结构体之成绩统计2(小白也能看懂) 摘要:解题思路: 先定义结构体,再for循环给结构体赋值然后定义三个sum分别计算三门科目总分,再通过每门科目总分求每门的平均分定义一个·变量,然后通过for循环确定最高分为多少,然后通过for循环比对…… 题解列表 2024年12月06日 0 点赞 0 评论 324 浏览 评分:0.0
新人小白仅供参考 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int N; struct f{ char num[10]; char name[10]; …… 题解列表 2024年12月01日 1 点赞 0 评论 231 浏览 评分:2.0
[编程入门]结构体之成绩统计2 摘要:```c #include struct a { char a[30]; char b[30]; //结构体 int c; int d; int e; }…… 题解列表 2024年11月12日 1 点赞 0 评论 309 浏览 评分:9.9
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct student { int num; // 学号 char name[10]; //…… 题解列表 2024年10月17日 1 点赞 0 评论 131 浏览 评分:8.0
第一次独立写出,发表一下获奖感言。 摘要:解题思路:先建立结构体,然后输入,for循环简单计算平均值和找出成绩最高的注意事项:输入和输出格式参考代码:#include<stdio.h>#include<stdlib.h>int main(){…… 题解列表 2024年08月27日 0 点赞 0 评论 93 浏览 评分:2.0
1051: [编程入门]结构体之成绩统计2 简洁版 摘要:```c #include #include typedef struct student { char id[100]; char name[100]; in…… 题解列表 2024年08月05日 0 点赞 0 评论 96 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct a{ char s1[9]; char s2[9]; …… 题解列表 2024年06月12日 0 点赞 0 评论 207 浏览 评分:0.0
1051成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char xuehao[20]; char xinming[20]; int a; in…… 题解列表 2024年05月23日 0 点赞 0 评论 100 浏览 评分:0.0