1051: [编程入门]结构体之成绩统计2 摘要:解题思路:结构体数组定义与使用注意事项:参考代码:struct inf{ char no[100]; char name[100]; int sc1; int …… 题解列表 2021年08月02日 0 点赞 0 评论 200 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言) 摘要:```c #include int ave1=0,ave2=0,ave3=0; struct a{ char b[20]; char c[20]; int d; int e; …… 题解列表 2021年09月10日 0 点赞 0 评论 151 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 (C++ 代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct student { char no[50]; …… 题解列表 2021年09月10日 0 点赞 0 评论 113 浏览 评分:0.0
[编程入门]结构体之成绩统计 摘要:解题思路:利用输入输出两个函数以及循环计数注意事项:注意计数参考代码:#include<iostream>using namespace std;struct student{ string n…… 题解列表 2021年10月05日 0 点赞 0 评论 161 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct student{ char id[10]; char name[20]; int …… 题解列表 2021年10月15日 0 点赞 0 评论 216 浏览 评分:0.0
简单解题法3 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct xinxi { char xuehao[10]; char xingming[10]; int yuw…… 题解列表 2021年11月17日 0 点赞 0 评论 281 浏览 评分:0.0
结构体之成绩统计2##不美观,见谅## 摘要:解题思路:本题看代码应该能懂注意事项:数据不少,注意保持头脑清醒!!我算平均值时,一言难尽。参考代码:#include<stdio.h>struct stu { char num[10]; …… 题解列表 2021年11月20日 0 点赞 0 评论 180 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:先把数据读进来,然后遍历所有学生数据,保存最高分学生数据,分别保存所有学生三科成绩,输出时使用了accumulate()函数。#include<bits/stdc++.h> using namesp…… 题解列表 2021年12月11日 0 点赞 0 评论 251 浏览 评分:0.0
结构体之成绩统计2 --指针 摘要:#include<stdio.h> #include<string.h> typedef struct { char sno[20]; char name[20]; int gra…… 题解列表 2022年01月13日 0 点赞 0 评论 131 浏览 评分:0.0
结构体之成绩统计2C语言 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>struct infor{char num[100];char name[100];int m…… 题解列表 2022年01月17日 0 点赞 0 评论 148 浏览 评分:0.0