这个真的超级简单,没得说!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student{ char ID[100];  …… 题解列表 2025年09月13日 0 点赞 0 评论 11 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:结构体变量和结构体数组注意事项:学号和姓名不能超过10个字符参考代码:#include<stdio.h>typedef struct{ un…… 题解列表 2025年09月13日 0 点赞 0 评论 14 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 74 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Person{ char StudentID[5]; char…… 题解列表 2025年04月18日 0 点赞 0 评论 573 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { char num[20]; char name[20]; int score[3…… 题解列表 2024年12月29日 3 点赞 0 评论 775 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 5 点赞 0 评论 780 浏览 评分:10.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void input();void print(); int n;struct information{ char num[10]…… 题解列表 2024年10月06日 0 点赞 0 评论 722 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{char number[10];char name[10];int score[3];};int main…… 题解列表 2024年10月02日 0 点赞 0 评论 350 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(指针) 摘要:#include <stdio.h> // 引入标准输入输出头文件 // 定义学生结构体 struct Student { char number[10]; // 学号 char …… 题解列表 2024年10月02日 0 点赞 0 评论 317 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c #include typedef struct student { char id[100]; char name[100]; int yuwen, sh…… 题解列表 2024年08月05日 1 点赞 0 评论 229 浏览 评分:0.0