12 2021 档案
摘要:2021基础编程练习5-结构体扩展练习 作业统计 http://oj.61coding.cn/problem.php?cid=1029&pid=0 #include<bits/stdc++.h> using namespace std; struct worktime{// 声明一个结构体类型 wo
阅读全文
摘要:C++数据结构-结构体 学生信息 http://oj.61coding.cn/problem.php?cid=1028&pid=0 #include<bits/stdc++.h> using namespace std; struct student{ string name; char sex;
阅读全文