[编程入门]结构体之成绩统计2-题解(C++代码) 如果有问题欢迎在评论区指出哦~! 摘要:```cpp #include #define N 100 struct student { char a[100]; char b[100]; int c1,c2,c3; …… 题解列表 2019年10月28日 0 点赞 1 评论 356 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:注意判断俩个同学成绩一样的情况参考代码:a=int(input())b=[]sum=0sun=0suk=0n=0w=[]k=0t=[]for i in range(a): c…… 题解列表 2022年03月05日 0 点赞 0 评论 182 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100 //最大数量 typedef struct stu { char id[10]; char name…… 题解列表 2021年03月01日 0 点赞 0 评论 164 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要:#include #include using namespace std; struct stu//定义一个学生类 { string name; string num; int …… 题解列表 2019年12月27日 0 点赞 0 评论 367 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;struct student{ string Id; stri…… 题解列表 2022年10月02日 0 点赞 0 评论 110 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define IDLEN 10#define NAMELEN 10typedef struct s…… 题解列表 2018年09月28日 0 点赞 0 评论 562 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:```c #include struct student { char num[10]; char name[20]; int score; int score1; int …… 题解列表 2020年02月01日 0 点赞 0 评论 304 浏览 评分:0.0
请问一下各位大佬,为什么运行正确,可是提交就是错误 摘要:```C #include struct data //定义结构体 { char num[10]; …… 题解列表 2022年02月16日 0 点赞 0 评论 219 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:可以作为链表练习的一个题,蛮不错的参考代码:#include <stdio.h>#include <stdlib.h>struct student{ char num…… 题解列表 2020年08月31日 0 点赞 0 评论 367 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; …… 题解列表 2018年05月06日 0 点赞 0 评论 626 浏览 评分:0.0