• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • work10

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号 102500331 姓名:余武 1.编写一个程序,将一
     2025高级语言程序设计(福州大学)   在天上飞的余   2025-12-17 17:38    0    6
  • 实验6 文件I/O与异常处理

    实验任务1 源代码 contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std:
     面向对象程序设计(南京信息工程大学)   南方之木   2025-12-17 17:04    0    6
  • 实验5

    一、实验结论 1. 实验任务1 程序源代码 Publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &n
     面向对象程序设计(南京信息工程大学)   isaacsun18   2025-12-16 21:56    1    6
  • 第四章算法作业

    一、我的贪心策略 策略:将区间按右端点从小到大排序,遍历区间时,如果当前区间左端点大于上一个选点,则选择当前区间的右端点作为新点。 核心思想:每次选择能覆盖当前未覆盖区间中结束最早的区间的右端点。 二、证明算法满足贪心选择性质 贪心选择性质证明: 设排序后第一个区间为 [a₁, b₁]。 必要性:任
     网络空间安全2402(广东外语外贸大学 - 信息学院)   谁给我一节人文   2025-12-16 21:44    0    6
  • 实验五

    任务一 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string &name_ = ""); // 构
     面向对象程序设计(南京信息工程大学)   KXJSLL   2025-12-16 22:35    1    6
  • Test6

    任务一 源代码 contestant.hpp 点我展开代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string nam
     面向对象程序设计(南京信息工程大学)   董建标   2025-12-17 09:34    0    6
  • c++ 5

    ##task1 #代码 1 #include <iostream> 2 #include <string> 3 #include "publisher.hpp" 4 5 // Publisher类:实现 6 Publisher::Publisher(const std::string &name_)
     面向对象程序设计(南京信息工程大学)   Zhades   2025-12-16 20:54    1    6
  • 实验6 文件I/O与异常处理

    实验任务1 源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin
     面向对象程序设计(南京信息工程大学)   溯溪而上   2025-12-17 15:57    0    6
  • 实验五

    实验五 任务一: 代码部分: publisher.hpp: #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ =
     面向对象程序设计(南京信息工程大学)   栖月水生   2025-12-17 05:16    1    6
  • 实验五

    实验任务1 源代码publisher.hpp 1 #pragma once 2 #include <string> 3 // 发行/出版物类:Publisher (抽象类) 4 class Publisher { 5 public: 6 Publisher(const std::string& na
     面向对象程序设计(南京信息工程大学)   木辛梓   2025-12-16 13:50    1    6
  • 实验5

    任务1: #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string &name_): name {name_} { }
     面向对象程序设计(南京信息工程大学)   封从想   2025-12-16 21:38    0    6
  • 实验5 多态

    任务1: 代码 #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构造函数 virtual
     面向对象程序设计(南京信息工程大学)   huangyue1234   2025-12-16 22:26    1    6
  • 实验五

    task1 publisher.hpp #pragma once #include<string> class Publisher{ public: Publisher(const std::string &name_=""); virtual ~Publisher()=default; publi
     面向对象程序设计(南京信息工程大学)   kk_n   2025-12-16 19:00    1    6
  • work9

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500331 姓名:余武 1.声明一个结构体类型
     2025高级语言程序设计(福州大学)   在天上飞的余   2025-12-15 18:35    0    6
  • 高级语言程序设计课程第十次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500409 姓名:周康琳 (1)编写一个程序
     2025高级语言程序设计(福州大学)   Jocelyn_0807   2025-12-16 14:00    0    6
  • 实验5-多态

    实验任务1源代码: 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string& name_ = "")
     面向对象程序设计(南京信息工程大学)   豪雅   2025-12-16 12:37    1    6
  • 实验5 多态

    实验5 实验任务1 源代码 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string &name_ =
     面向对象程序设计(南京信息工程大学)   景思翰   2025-12-16 21:48    1    6
  • 实验5 多态

    实验任务1 源代码如下 publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = "")
     面向对象程序设计(南京信息工程大学)   勤垦原   2025-12-16 19:14    1    6
  • 高级语言程序设计课程第九次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:<102500316> 姓名:<陈艺铭> 1. 2.
     2025高级语言程序设计(福州大学)   中吕十八   2025-12-15 19:47    0    6
  • 实验五

    任务一: #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构造函数 virtual ~Pu
     面向对象程序设计(南京信息工程大学)   Little_Zcy   2025-12-15 19:00    0    6
< Prev1234567891011···16Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档