[编程入门]结构体之成绩统计2 (链表思路,初学者,请大佬指正) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> typedef struct student { char id[10]…… 题解列表 2019年05月07日 0 点赞 0 评论 690 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码)不复杂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define n 100struct student{ char number[10]; char name[20]; int sco…… 题解列表 2019年05月09日 0 点赞 0 评论 1211 浏览 评分: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 评论 1648 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();struct student {char num[20];char name[20];float score…… 题解列表 2019年05月16日 0 点赞 0 评论 909 浏览 评分: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 评论 1493 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:注意:max的初值 #include #include struct student { char num[10]; char name[20]; i…… 题解列表 2019年06月20日 0 点赞 0 评论 1017 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要://细节问题,注意以下就好,代码如下 #include using namespace std; struct student{ string studentNumber; strin…… 题解列表 2019年07月17日 0 点赞 0 评论 720 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要: #include #include #define LEN sizeof(struct student) struct student //声明结构体; {…… 题解列表 2019年07月30日 0 点赞 0 评论 807 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:# include struct student { char name[10]; char num[10]; int scort[3]; }stu[3]; i…… 题解列表 2019年08月12日 0 点赞 0 评论 806 浏览 评分:0.0