编写题解 1051: [编程入门]结构体之成绩记录2 摘要:在结构体内部的命名搞混了, ```c #include #include struct stu { char num[10]; char name[20]; int sc…… 题解列表 2023年03月16日 0 点赞 0 评论 272 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码)(结构体做法) 摘要:个人做法,一般都是用实型数据表示分数,但我用实型数据会一直答案错误,有大佬知道怎么回事吗?题目要求整型? #include /**以下为函数声明**/ struct M…… 题解列表 2019年12月18日 0 点赞 0 评论 568 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; …… 题解列表 2018年05月06日 0 点赞 0 评论 625 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要: #include "stdio.h" struct student { char num[20]; char name[20]; int grade_1; int …… 题解列表 2020年02月06日 0 点赞 0 评论 355 浏览 评分: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<stdio.h>struct student{char num[100];char name[100];int score1;int score2;in…… 题解列表 2019年05月17日 0 点赞 0 评论 798 浏览 评分:0.0
链表实现结构体之成绩统计2 摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct student { char id[10]; char n…… 题解列表 2021年04月11日 0 点赞 0 评论 172 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:# include struct student { char name[10]; char num[10]; int scort[3]; }stu[3]; i…… 题解列表 2019年08月12日 0 点赞 0 评论 326 浏览 评分:0.0
纯新手无脑解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main() { int n; scanf("%d", &n); ch…… 题解列表 2024年12月12日 0 点赞 0 评论 510 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char sno[20]; char name[20]; int grade[3];};inp…… 题解列表 2018年04月03日 0 点赞 0 评论 756 浏览 评分:0.0