1050—————— [编程入门]结构体之成绩记录 摘要:**参考了上面大佬的题解** 整合成一行 for i in range(0,int(input())):print(','.join(list(input().split()))) #…… 题解列表 2022年09月08日 0 点赞 0 评论 222 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:(很简单)定义一个结构体,里面定义score【3】数组存放三个变量,外部声明一个结构体数组注意事项:由于"."的运算符的优先级最高,可不用加括号参考代码:#include<stdio.h>s…… 题解列表 2022年09月11日 0 点赞 0 评论 186 浏览 评分:0.0
1050-结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 123 浏览 评分:0.0
结构体之成绩记录 摘要: #include #include #include #include using namespace std; struct demo …… 题解列表 2022年10月12日 0 点赞 0 评论 188 浏览 评分:0.0
C++ 类实现 : N个学生类(N<100),每个有属性 学号、姓名、三科成绩。两个成员函数 一个输入数据,一个输出。 摘要:解题思路:注意事项:参考代码:class student{public: string num, name; // 学号、名字 vector<int>v; // …… 题解列表 2022年10月18日 0 点赞 0 评论 278 浏览 评分:0.0
结构体之成绩记录(C语言) 摘要:#include<stdio.h> typedef struct student { char studentID[20]; char studentName[20]; int sco…… 题解列表 2023年01月11日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 新手向 有问必回 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;struct student { string number…… 题解列表 2023年01月14日 0 点赞 0 评论 140 浏览 评分:0.0
结构体之成绩记录(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { char num[10]; char name[20]; int a; i…… 题解列表 2023年01月31日 0 点赞 0 评论 138 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:用结构体数组来解决问题注意事项:见代码参考代码:#include <stdio.h>typedef struct student{ char id[20]; char name[20]; i…… 题解列表 2023年02月21日 0 点赞 0 评论 122 浏览 评分: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 评论 118 浏览 评分:0.0