题解 1050: [编程入门]结构体之成绩记录(超超超级简短) 摘要:```c #include #include struct student { char shuju[20]; char name[20]; int chines…… 题解列表 2023年12月17日 0 点赞 0 评论 114 浏览 评分:6.0
题解 1050: [编程入门]结构体之成绩记录(超超超级简单) 摘要:```c #include #include struct student { char shuju[20]; char name[20]; int chinese; int …… 题解列表 2023年12月17日 0 点赞 0 评论 76 浏览 评分:0.0
题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路: 1.利用结构体储存学生信息 2.利用malloc 申请内存空间 3.利用指针people 遍历内存信息并输出注…… 题解列表 2023年12月14日 0 点赞 0 评论 60 浏览 评分:9.9
结构体之成绩记录,中规中矩 摘要:解题思路:注意事项:注意格式的输出参考代码:#include<stdio.h>int main(){ struct LC { char a[10]; char b[10]; int c[3]; …… 题解列表 2023年12月13日 0 点赞 0 评论 63 浏览 评分:0.0
]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char id[20],name[20]; int score1,score2,score3;};v…… 题解列表 2023年12月08日 0 点赞 0 评论 70 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:class Student(): def input(self, student_id, name, score): self.student…… 题解列表 2023年11月30日 0 点赞 0 评论 66 浏览 评分:0.0
无需指针 无需指针 无需指针 最最最简单易懂的解题思路!!! 摘要:解题思路:根据题目要求,需要输n个学生的各项数据,且需要定义一个结构体包含学生的各项数据。那我们可以将一个学生的各项数据作为一个整体,n个学生的话就需要n个整体,所以我们就可以定义一个结构体数组,每个…… 题解列表 2023年11月30日 0 点赞 0 评论 122 浏览 评分:0.0
用最简单的C语言做出结构体之成绩记录 摘要:解题思路:直接用结构体引用就行注意事项:参考代码:#include<stdio.h>struct input{ char num[100]; char name[100]; int score[3];…… 题解列表 2023年11月24日 0 点赞 0 评论 75 浏览 评分:9.9
C语言,结构数组 摘要:解题思路:呃,懒得写了参考代码:#include <stdio.h>typedef struct student{ char number[10]; char name[10]; c…… 题解列表 2023年11月19日 0 点赞 0 评论 99 浏览 评分:0.0
结构体之成绩记录(原始解法通俗易懂) 摘要:解题思路:原始解法,没有加任何指针或者链表。方便理解。注意事项:参考代码:#include<stdio.h>#include<string.h>struct Student { char id[128…… 题解列表 2023年11月04日 0 点赞 0 评论 56 浏览 评分:0.0