[编程入门]正儿八经的C语言代码,简单易懂。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { char id[20]; char name[30]; int a[3];};int i, n;str…… 题解列表 2020年12月14日 0 点赞 3 评论 367 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include struct student{ char sno[20]; char name[20]; int chinese; int math; int e…… 题解列表 2019年11月30日 0 点赞 0 评论 1183 浏览 评分:9.9
[编程入门]结构体之成绩记录 摘要:```cpp #include using namespace std; class student { public: string number; strin…… 题解列表 2023年03月20日 0 点赞 0 评论 109 浏览 评分:9.9
[编程入门]结构体之成绩记录 (Python代码) 摘要:没看到python解题的我就贴一下自己的,不是很简洁,有优化的欢迎贴出来学习。 ```python def grade_in_pri(n): num=[] name=[] …… 题解列表 2020年03月15日 0 点赞 0 评论 733 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码)新手上路,简单写法! 摘要:解题思路: 结构体数组作为参数。注意事项: 循环输入和输出分别在input和print函数中完成。参考代码:#include <stdio.h>struct information{ …… 题解列表 2020年07月12日 0 点赞 0 评论 384 浏览 评分:9.9
还算还算还算清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();void print();struct student{ char number[100]; ch…… 题解列表 2024年03月17日 0 点赞 0 评论 88 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:```cpp #include #include using namespace std; int n; struct node { string a, b; in…… 题解列表 2022年08月18日 0 点赞 0 评论 267 浏览 评分:9.9
结构体之成绩记录(简易) 摘要:解题思路:根据题目样例,我们可以发现输入和输出差的是数之间的逗号,所以我们可以直接进行输出;(其实很想吐槽啊)注意事项:是英文逗号参考代码:#include<bits/stdc++.h>using n…… 题解列表 2022年05月01日 0 点赞 0 评论 213 浏览 评分:9.9
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 100 struct student_grade{ char student_number[N]; c…… 题解列表 2021年02月16日 0 点赞 0 评论 169 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:解题思路:一开始想用class代替struct,但是没想好怎么建对象的数组,就用struct了,实际上用class好像思路也是一样的。注意事项:(1)strcpy()函数要加<cstring>头。(2…… 题解列表 2022年03月07日 0 点赞 0 评论 284 浏览 评分:9.9