-
实验5
实验五 实验任务一 代码 publisher.cpp #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string &nam -
实验5
##实验任务1 #代码 publisher.hpp 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::str -
实验五
task1 publisher.hpp #pragma once #include<string> class Publisher{ public: Publisher(const std::string &name_=""); virtual ~Publisher()=default; publi -
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500312 姓名:朱喻辰 (1)编写一个程序 -
实验6
task1 (1) 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string name; / -
实验6 文件I/O与异常处理
实验任务1 源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin -
实验 5
task 1 Publisher.hpp 1 #pragma once 2 #include<string> 3 4 class Publisher { 5 public: 6 Publisher(const std::string& name_ = " "); 7 virtual ~Publish -
实验5
实验1 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string &name_ = ""); // 构 -
实验六
实验任务一 代码 contestant.hpp 点击查看代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string na -
Python蓝桥杯第三次学习+感悟
本周学习内容:视频 22 字符串补充——视频 24 打包与解包 由于我之前学Python只是学习基础的东西,所以这些扩展的内容我都没学 现在半个小时能学到很多东西,一个一个写 不如自己实干实地的做笔记 所以就简单说一下自己的进度 感悟: 1.学习方法: 在学习蓝桥杯的课程中,我发现对于基础知识和基础 -
实验6 文件I/O与异常处理
实验任务一: 源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::stri -
实验6 文件I/O与异常处理
task1: 1 #include <iostream> 2 #include <string> 3 4 struct Contestant { 5 long id; // 学号 6 std::string name; // 姓名 7 std::string major; // 专业 8 int s -
实验六
实验任务1: 源代码: 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string name; -
实验6
实验任务1: utils.hpp源代码: 1 #pragma once 2 #include <fstream> 3 #include <iostream> 4 #include <stdexcept> 5 #include <string> 6 #include <vector> 7 #inclu -
高级语言程序第九次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500415 姓名:林帅前 1. 2. 3. 4 -
高级语言程序设计课程第九次个人作业
作业所属课程:我的班级 作业内容:第九次作业 姓名:林奕鹏 学号:102500313 作业: 总结:这次作业让我学会了运用结构体解决实际问题。 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500330 姓名:黄明浩 声明一个结构体类型, -
实验4 组合与继承
实验任务1 代码组织: GradeCalc.hpp 类GradeCalc声明 GradeCalc.cpp 类GradeCalc实现 demo1.cpp 测试代码 + main.cpp GradeCalc.hpp #pragma once #include <vector> #include <arr -
高级语言程序设计课程第九次个人作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx/ 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 姓名:李志鹏 学号:102500325 1 2 3 4 5 6 7 8 9 -
实验五
任务一 publisher.hpp源代码如下 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string