[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://首先定义学生数据的结构体struct stu{ char number[10]; char name[20]; int score[3];};/…… 题解列表 2020年09月08日 0 点赞 0 评论 548 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include<stdio.h>struct jiegouti{ char a[100]; char b[100]; int c[3]; int zongfen;};void…… 题解列表 2019年02月12日 0 点赞 0 评论 463 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 用数组做的还没学结构体 摘要:#include int main() { int n,i,a=0,b=0,c=0,k=0; scanf("%d",&n);//输入学生人数。 int cj1[n],cj2[n]…… 题解列表 2019年12月19日 0 点赞 0 评论 562 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct{ char num[50]; char name[50]; …… 题解列表 2018年08月25日 0 点赞 0 评论 553 浏览 评分:0.0
题目 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct chengji{ char xuehao[10]; char name[10]; int fen1; …… 题解列表 2022年04月05日 0 点赞 0 评论 257 浏览 评分:0.0
[编程入门]结构体之成绩统计2 (链表思路,初学者,请大佬指正) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> typedef struct student { char id[10]…… 题解列表 2019年05月07日 0 点赞 0 评论 354 浏览 评分: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
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100 //最大数量 typedef struct stu { char id[10]; char name…… 题解列表 2021年03月01日 0 点赞 0 评论 164 浏览 评分:0.0
结构体成绩统计二(C语言)好理解 摘要:参考代码:#include<stdio.h>typedef struct stu { char num[100]; char name[100]; int score[3];};vo…… 题解列表 2024年01月24日 0 点赞 0 评论 79 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct add{ char xh[10]; char xm[10]; int fs[3];…… 题解列表 2020年08月23日 0 点赞 0 评论 146 浏览 评分:0.0