[编程入门]结构体之成绩统计2 摘要:解题思路:简单模拟注意事项:说30行是因为我的注释占了三行不算。参考代码:#include<bits/stdc++.h>using namespace std;int n,sum[3],maxn,cn…… 题解列表 2022年05月10日 0 点赞 0 评论 371 浏览 评分:0.0
结构体-学生成绩录入2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3…… 题解列表 2022年05月16日 0 点赞 0 评论 310 浏览 评分:0.0
结构体之成绩统计2 摘要:```c #include struct Date{ char num[10]; char name[10]; int grade1; int grade2; int grad…… 题解列表 2022年05月25日 0 点赞 0 评论 355 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:没太懂题目中说最高分的意思,我理解是说输出最高的那个成绩所在的那组数据,但是还是有五十的错误。仅供参考。注意事项:参考代码:def in_put(n): xuehao = []…… 题解列表 2022年05月25日 0 点赞 0 评论 323 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; …… 题解列表 2022年06月20日 0 点赞 0 评论 212 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:写三个子函数,分别赋值,求平均,求最大注意事项:参考代码:#include"stdio.h"int n;struct{ char num[20]; char name[20]; …… 题解列表 2022年06月23日 0 点赞 0 评论 312 浏览 评分:0.0
小白写程序-结构体之成绩统计2(C语言) 摘要:解题思路:1.建立结构体 2.在主函数中用设一个结构体max用于存储总分最大的数据行,先设置初始值为都为0,输入要输入的数据行个数 3.在循环体内设循环体,输入数据行,并且用if语句判断总分大小,将较…… 题解列表 2022年07月10日 0 点赞 0 评论 484 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;struct student{ string Id; stri…… 题解列表 2022年10月02日 0 点赞 0 评论 256 浏览 评分:0.0
1051-结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 269 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:#include typedef struct stu { char id[10]; char name[10]; int performance[3]; int aver; }…… 题解列表 2022年10月12日 0 点赞 0 评论 266 浏览 评分:0.0