[编程入门]结构体之成绩记录-题解(C++代码) 摘要:#include #include using namespace std; class stu { public: void inputs(); void print(); pr…… 题解列表 2019年12月27日 0 点赞 0 评论 319 浏览 评分:0.0
超简单解法,28行 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string xuehao; string name; int…… 题解列表 2021年03月28日 0 点赞 0 评论 112 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:偷懒一下,写一个函数注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string xh,nam…… 题解列表 2023年05月20日 0 点赞 0 评论 55 浏览 评分:0.0
[编程入门]结构体之成绩记录(C++)STL string,可以体会到struct很像定义类时的变量传入 摘要: ```cpp #include #include using namespace std; struct student{ string id; string …… 题解列表 2022年01月25日 0 点赞 0 评论 129 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码)偷偷混入其中 摘要:解题思路: 偷偷混入其中参考代码:#include<bits/stdc++.h> using namespace std; const int maxn=105; struct stude…… 题解列表 2018年12月04日 0 点赞 0 评论 498 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C++代码)二维数组解答 摘要: 首先定义一个二维数组,输入,再控制输出即可。 #include using namespace std; int main() { string a[100][5] in…… 题解列表 2020年02月20日 0 点赞 0 评论 239 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue…… 题解列表 2023年09月29日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; int …… 题解列表 2022年03月21日 0 点赞 0 评论 169 浏览 评分:0.0
1050-结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C++代码) 摘要:解题思路: 看题注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct studen{ char xuehao[10]; char…… 题解列表 2019年04月17日 0 点赞 0 评论 515 浏览 评分:0.0