结构体-学生成绩录入2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3…… 题解列表 2022年05月16日 0 点赞 0 评论 170 浏览 评分:0.0
结构体之成绩统计2 摘要:```c #include struct Date{ char num[10]; char name[10]; int grade1; int grade2; int grad…… 题解列表 2022年05月25日 0 点赞 0 评论 234 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:没太懂题目中说最高分的意思,我理解是说输出最高的那个成绩所在的那组数据,但是还是有五十的错误。仅供参考。注意事项:参考代码:def in_put(n): xuehao = []…… 题解列表 2022年05月25日 0 点赞 0 评论 205 浏览 评分:0.0
是人都能看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct chengji{ char xuehao[100]; char mingzi[100]; int c1;…… 题解列表 2022年06月13日 0 点赞 1 评论 155 浏览 评分:8.0
[编程入门]结构体之成绩统计2-python 摘要:def enter(Lis,n): for i in range(n): lis = [i for i in input().split(' ')] …… 题解列表 2022年06月20日 0 点赞 0 评论 301 浏览 评分:9.9
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; …… 题解列表 2022年06月20日 0 点赞 0 评论 114 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:写三个子函数,分别赋值,求平均,求最大注意事项:参考代码:#include"stdio.h"int n;struct{ char num[20]; char name[20]; …… 题解列表 2022年06月23日 0 点赞 0 评论 172 浏览 评分:0.0
优质题解 [编程入门]结构体之成绩统计2 摘要:解题思路:创建结构体将学号,姓名,成绩等不同的数据类型组合在一起形成新的数据类型Student。在主函数中定义变量N用来保存学生人数,因为学生的数量不是一个,所以用数组来保存学生的信息,接着定义Ane…… 题解列表 2022年07月09日 0 点赞 6 评论 3751 浏览 评分:9.3
小白写程序-结构体之成绩统计2(C语言) 摘要:解题思路:1.建立结构体 2.在主函数中用设一个结构体max用于存储总分最大的数据行,先设置初始值为都为0,输入要输入的数据行个数 3.在循环体内设循环体,输入数据行,并且用if语句判断总分大小,将较…… 题解列表 2022年07月10日 0 点赞 0 评论 347 浏览 评分:0.0
[编程入门]结构体之成绩统计2 新手简单易懂版本 摘要:```cpp #include #include using namespace std; struct Student { string xuehao; string xingmi…… 题解列表 2022年08月15日 0 点赞 0 评论 247 浏览 评分:9.9