[编程入门]结构体之成绩统计2 (C语言代码)不复杂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define n 100struct student{ char number[10]; char name[20]; int sco…… 题解列表 2019年05月09日 0 点赞 0 评论 1095 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct xuesheng{ char num[10]; char name[20]; int a,b,c,zongfenhe;};…… 题解列表 2019年05月10日 0 点赞 0 评论 1453 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();struct student {char num[20];char name[20];float score…… 题解列表 2019年05月16日 0 点赞 0 评论 821 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{char num[100];char name[100];int score1;int score2;in…… 题解列表 2019年05月17日 0 点赞 0 评论 1365 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:注意:max的初值 #include #include struct student { char num[10]; char name[20]; i…… 题解列表 2019年06月20日 0 点赞 0 评论 924 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要://细节问题,注意以下就好,代码如下 #include using namespace std; struct student{ string studentNumber; strin…… 题解列表 2019年07月17日 0 点赞 0 评论 634 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要: #include #include #define LEN sizeof(struct student) struct student //声明结构体; {…… 题解列表 2019年07月30日 0 点赞 0 评论 702 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:# include struct student { char name[10]; char num[10]; int scort[3]; }stu[3]; i…… 题解列表 2019年08月12日 0 点赞 0 评论 674 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路: 1、定义结构体时保存题目规定的学生信息以及该学生总成绩 2、在主函数中计算单科平均分并输出 3、比较每个学生总分多少,找出最高分,按要求输出。 4、纯C语言,思路简单。 ``…… 题解列表 2019年08月13日 0 点赞 0 评论 680 浏览 评分:0.0