结构体之成绩记录(参考置顶,仅作记录) 摘要:#include<stdio.h> #include<mm_malloc.h> typedef struct student_info { char s_id[16]; …… 题解列表 2021年07月19日 0 点赞 0 评论 218 浏览 评分:0.0
结构清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char id[20]; char name[20]…… 题解列表 2024年07月31日 0 点赞 0 评论 91 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:class Student(): def input(self, student_id, name, score): self.student…… 题解列表 2023年11月30日 0 点赞 0 评论 71 浏览 评分:0.0
[编程入门]结构体之成绩记录--------(Python) 摘要:```python n=int(input()) t=[] class sun1: def input(): s=list(map(str,input().split…… 题解列表 2021年11月17日 0 点赞 0 评论 258 浏览 评分:0.0
结构体成绩 摘要:解题思路:#include <stdio.h>struct stu{ char num[100]; char name[100]; int get[3];};void input(struct stu…… 题解列表 2023年03月05日 0 点赞 0 评论 66 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要: ```c #include #define N 100 struct Student{ char num[10]; char name[10]; int sco…… 题解列表 2020年01月11日 0 点赞 0 评论 402 浏览 评分:0.0
1050—————— [编程入门]结构体之成绩记录 摘要:**参考了上面大佬的题解** 整合成一行 for i in range(0,int(input())):print(','.join(list(input().split()))) #…… 题解列表 2022年09月08日 0 点赞 0 评论 181 浏览 评分:0.0
[编程入门]结构体之成绩记录 题解 摘要:解题思路:这题就是简单的结构体输入输出。注意事项:中间要用“,”分隔开,最后一个科目后不用“,”要换行。参考代码:#include<bits/stdc++.h>using namespace std;…… 题解列表 2022年05月06日 0 点赞 0 评论 76 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 73 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:结构的基本操作,利用循环给结构中成员赋值注意事项:可以利用malloc函数定义结构数组参考代码:#include <stdio.h>#include <stdlib.h>//malloc函数…… 题解列表 2021年01月22日 0 点赞 0 评论 278 浏览 评分:0.0