• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 高级语言程序设计课程第九次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:<052301346> 姓名:<郑积超> 作业内容
     2025高级语言程序设计(福州大学)   052301346郑积超   2025-12-13 20:34    0    4
  • 实验五

    实验任务一 代码 publisher.hpp 点击查看代码 #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ =
     面向对象程序设计(南京信息工程大学)   廾匸gg   2025-12-14 17:27    0    4
  • 实验5

    1.实验任务1 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax
     程序设计基础(南京信息工程大学)   nightmareplus   2025-12-12 15:04    1    4
  • 实验5

    task 1-1 点击查看代码 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, i
     程序设计基础(南京信息工程大学)   陈禹江   2025-12-12 15:28    1    4
  • 高级语言程序设计课程第九次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500334 姓名:吴俊杰 1.声明一个结构体类
     2025高级语言程序设计(福州大学)   塞维亚菊   2025-12-14 23:01    0    4
  • 算法第四章作业

    一、选点问题解答 最优贪心策略: (1)排序:所有区间按右端点非降序排列(核心关键)。 (2)初始:选第一个区间的右端点作为首个选点。 (3)遍历:依次检查后续区间,若当前区间不包含最后一个已选点(左端点>已选点),选当前区间右端点为新选点,选点数加一,直至所有区间被覆盖,即全部遍历完。 贪心选择性
     软件工程2403(广东外语外贸大学 - 信息学院)   paidaxing*   2025-12-14 23:13    0    4
  • 第五次团队作业:项目的测试与发布

    团队作业5——校园点评项目的测试与发布(Alpha版本) 一.项目信息 项目 内容 所属课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 作业要求 https://edu.cnblogs.com/campus/g
     计科23级12班(广东工业大学 - 计算机学院)   _NXX   2025-12-15 14:20    0    4
  • 第四章作业

    一、选点问题分析(经典区间选点问题) 问题定义 给定若干个闭区间 [a_i, b_i],要求选择最少数量的点,使得每个区间至少包含一个选点。 贪心策略 核心策略:按区间的右端点从小到大排序,依次遍历每个区间;若当前区间未被已选点覆盖,则选择该区间的右端点作为新的选点。 具体步骤: 将所有区间按右端点
     网络空间安全2402(广东外语外贸大学 - 信息学院)   刘懿洋   2025-12-14 18:40    0    4
  • 高级语言程序设计课程第九次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500305 姓名:赖晓娟 一.声明一个结构体
     2025高级语言程序设计(福州大学)   Whooooo   2025-12-15 00:20    0    4
  • 高级语言程序设计第十次作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500401 姓名:林含悦 1.编写一个程序,将
     2025高级语言程序设计(福州大学)   林含悦   2025-12-17 12:08    0    4
  • 实验五

    任务一 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    0    4
  • 实验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    0    4
  • 实验6

    任务1: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 s
     面向对象程序设计(南京信息工程大学)   彤彤酱   2025-12-17 11:14    0    4
  • 实验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::
     面向对象程序设计(南京信息工程大学)   摇摇车nuist   2025-12-17 13:14    0    4
  • Test6

    任务一 源代码 contestant.hpp 点我展开代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string nam
     面向对象程序设计(南京信息工程大学)   董建标   2025-12-17 09:34    0    4
  • 高级语言程序设计课程第十次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500421 姓名:陈浩宇 (1)编写一个程
     2025高级语言程序设计(福州大学)   昱昉   2025-12-16 20:39    0    4
  • OOP实验五

    实验任务一 源代码: #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string &name_): name {name_
     面向对象程序设计(南京信息工程大学)   周心岚   2025-12-16 13:10    0    4
  • 实验五

    任务一: 源代码task1.cpp #include <memory> #include <iostream> #include <vector> #include "publisher.hpp" void test1() { std::vector<Publisher *> v; v.push_b
     面向对象程序设计(南京信息工程大学)   mm77777   2025-12-16 19:45    0    4
  • 实验5

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

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

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