[编程入门]结构体之成绩记录 摘要:```cpp #include using namespace std; class student { public: string number; strin…… 题解列表 2023年03月20日 0 点赞 0 评论 95 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录 摘要: 注意结构体+函数的调用形式!!! ```c #include #include struct stu { char num[10]; char name[20]; i…… 题解列表 2023年03月16日 0 点赞 0 评论 102 浏览 评分:0.0
结构体之成绩记录——记录学生信息 摘要:解题思路:将输入的学生信息存放到列表当中注意事项:输出时以逗号分隔参考代码:n = int(input())L1 = []for i in range(n): L = list(map(str,…… 题解列表 2023年03月14日 0 点赞 0 评论 60 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:```c #include #include #include #include #include typedef struct stu { char num[100]; c…… 题解列表 2023年03月09日 0 点赞 0 评论 153 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录——Ccp 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2023年03月07日 0 点赞 0 评论 63 浏览 评分:9.9
结构体成绩 摘要:解题思路:#include <stdio.h>struct stu{ char num[100]; char name[100]; int get[3];};void input(struct stu…… 题解列表 2023年03月05日 0 点赞 0 评论 57 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:```cpp #include using namespace std; struct Student { string num,name; int Math,Engl…… 题解列表 2023年02月24日 0 点赞 1 评论 54 浏览 评分:9.9
结构体之成绩记录 摘要:解题思路:用结构体数组来解决问题注意事项:见代码参考代码:#include <stdio.h>typedef struct student{ char id[20]; char name[20]; i…… 题解列表 2023年02月21日 0 点赞 0 评论 44 浏览 评分:0.0
结构体之成绩记录(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { char num[10]; char name[20]; int a; i…… 题解列表 2023年01月31日 0 点赞 0 评论 66 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 新手向 有问必回 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;struct student { string number…… 题解列表 2023年01月14日 0 点赞 0 评论 51 浏览 评分:0.0